mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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',
|
'X-RADICALE-NAME',
|
||||||
# REV is from the VCARD specification and is supposed to change when the
|
# REV is from the VCARD specification and is supposed to change when the
|
||||||
# item does -- however, we can determine that ourselves
|
# 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
|
del _process_properties
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue