Skip to content

Commit

Permalink
Merge pull request #117 from ServiceNow/scratch/114-changes
Browse files Browse the repository at this point in the history
feat: fxes GlideRecord.changes() returning False with multiple Changes
  • Loading branch information
vetsin authored Oct 7, 2024
2 parents 27dfac2 + e75c0f8 commit c8318a0
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 c8318a0

Please sign in to comment.