Skip to content

Commit

Permalink
Merge pull request #115 from ITblacksheep/patch-1
Browse files Browse the repository at this point in the history
Fixes GlideRecord.changes() returning False with multiple Changes
  • Loading branch information
vetsin authored Sep 26, 2024
2 parents 27dfac2 + 888a178 commit e75c0f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysnc/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def changes(self) -> bool:
if obj:
has_changed = False
for key, value in obj.items():
has_changed ^= value.changes()
has_changed |= value.changes()
return has_changed
return False

Expand Down

0 comments on commit e75c0f8

Please sign in to comment.