Fixing problem where the uids have automatically got a random suffix which prevented a correct update detection
This commit is contained in:
parent
a684d540e5
commit
df73c0164b
4
main.py
4
main.py
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user