mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Ignore DTSTAMP when hashing items
This commit is contained in:
parent
8e3f0ab05f
commit
04b3379172
1 changed files with 5 additions and 1 deletions
|
|
@ -25,7 +25,11 @@ IGNORE_PROPS = _process_properties(
|
|||
'X-RADICALE-NAME',
|
||||
# REV is from the VCARD specification and is supposed to change when the
|
||||
# item does -- however, we can determine that ourselves
|
||||
'REV'
|
||||
'REV',
|
||||
# Some iCalendar HTTP calendars (Google's read-only calendar links)
|
||||
# generate the DTSTAMP at request time, so this property always changes
|
||||
# when the rest of the item didn't.
|
||||
'DTSTAMP',
|
||||
)
|
||||
del _process_properties
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue