mirror of https://gitlab.com/bashrc2/epicyon
Remove trailing activity
parent
2738dcbedf
commit
b0bd93e52d
5
inbox.py
5
inbox.py
|
@ -1385,7 +1385,10 @@ def inboxUpdateCalendar(baseDir: str,handle: str,postJsonObject: {}) -> None:
|
||||||
if not os.path.isdir(calendarPath+'/'+str(eventYear)):
|
if not os.path.isdir(calendarPath+'/'+str(eventYear)):
|
||||||
os.mkdir(calendarPath+'/'+str(eventYear))
|
os.mkdir(calendarPath+'/'+str(eventYear))
|
||||||
calendarFilename=calendarPath+'/'+str(eventYear)+'/'+str(eventMonthNumber)+'.txt'
|
calendarFilename=calendarPath+'/'+str(eventYear)+'/'+str(eventMonthNumber)+'.txt'
|
||||||
postId=postJsonObject['id'].replace('/','#')
|
postId=postJsonObject['id']
|
||||||
|
if '#' in postId:
|
||||||
|
postId=postId.split('#')[0]
|
||||||
|
postId=postId.replace('/','#')
|
||||||
if os.path.isfile(calendarFilename):
|
if os.path.isfile(calendarFilename):
|
||||||
if postId in open(calendarFilename).read():
|
if postId in open(calendarFilename).read():
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue