We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e06ac6e commit 3312048Copy full SHA for 3312048
connector_wordpress/models/ir_attachment/binder.py
@@ -15,7 +15,10 @@ class WordPressIrAttachmentBinder(Component):
15
16
def _get_external_record_domain(self, relation, values):
17
equivalent_binding_attachment = self.env["wordpress.ir.attachment"].search(
18
- [("checksum", "=", relation.checksum)],
+ [
19
+ ("checksum", "=", relation.checksum),
20
+ ("backend_id", "=", self.backend_record.id),
21
+ ],
22
limit=1,
23
)
24
if equivalent_binding_attachment:
0 commit comments