From 4de920b552b9f940a76a26814a564465042e623c Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 2 Mar 2017 14:52:17 +0100 Subject: [PATCH] Ignore METHOD prop while hashing --- vdirsyncer/vobject.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vdirsyncer/vobject.py b/vdirsyncer/vobject.py index 20f43b5..2ffc86d 100644 --- a/vdirsyncer/vobject.py +++ b/vdirsyncer/vobject.py @@ -9,6 +9,9 @@ from .utils import cached_property, uniq IGNORE_PROPS = ( # PRODID is changed by radicale for some reason after upload 'PRODID', + # Sometimes METHOD:PUBLISH is added by WebCAL providers, for us it doesn't + # make a difference + 'METHOD', # X-RADICALE-NAME is used by radicale, because hrefs don't really exist in # their filesystem backend 'X-RADICALE-NAME',