Skip to content

Commit

Permalink
Logic flip
Browse files Browse the repository at this point in the history
  • Loading branch information
rixx committed Nov 27, 2024
1 parent 6047d41 commit 79ebd87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pretalx_salesforce/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def relations_out_of_date(self):
# We compare our generated IDs as a shorthand – the rest of the data is
# static by definition, and otherwise we’d have to deduplicate a list of
# (unhashable) dictionaries
return {d["pretalx_LegacyID__c"] for d in self.serialize_relations()} == {
return {d["pretalx_LegacyID__c"] for d in self.serialize_relations()} != {
d["pretalx_LegacyID__c"] for d in self.synced_data["relations"]
}

Expand Down

0 comments on commit 79ebd87

Please sign in to comment.