Fixing problem where the uids have automatically got a random suffix which prevented a correct update detection
This commit is contained in:
@@ -84,10 +84,14 @@ def crawl():
|
||||
if not event.uid in evtIdx.keys():
|
||||
# Event not known yet
|
||||
uid = event.uid
|
||||
# Remove random last part of uid
|
||||
uid = uid[:(uid.rindex('_'))]
|
||||
event.uid = uid + '---0'
|
||||
evtIdx[uid] = 1
|
||||
else:
|
||||
uid = event.uid
|
||||
# Remove random last part of uid
|
||||
uid = uid[:(uid.rindex('_'))]
|
||||
event.uid = uid + '---' + str(evtIdx[uid])
|
||||
evtIdx[uid] += 1
|
||||
# Remove timezones
|
||||
|
||||
Reference in New Issue
Block a user