Skip to content

Commit c8318a0

Browse files
authored
Merge pull request #117 from ServiceNow/scratch/114-changes
feat: fxes GlideRecord.changes() returning False with multiple Changes
2 parents 27dfac2 + e75c0f8 commit c8318a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pysnc/record.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def changes(self) -> bool:
501501
if obj:
502502
has_changed = False
503503
for key, value in obj.items():
504-
has_changed ^= value.changes()
504+
has_changed |= value.changes()
505505
return has_changed
506506
return False
507507

0 commit comments

Comments
 (0)