Check for type field

main
Bob Mottram 2020-07-11 23:36:52 +01:00
parent e61e8bb21b
commit e007168cd6
2 changed files with 3 additions and 2 deletions

View File

@ -1920,6 +1920,8 @@ def inboxUpdateCalendar(baseDir: str, handle: str, postJsonObject: {}) -> None:
actorNickname, actorDomain):
return
for tagDict in postJsonObject['object']['tag']:
if not tagDict.get('type'):
continue
if tagDict['type'] != 'Event':
continue
if not tagDict.get('startTime'):

View File

@ -1918,8 +1918,7 @@ def addToField(activityType: str, postJsonObject: {},
def sendToNamedAddresses(session, baseDir: str,
nickname: str,
domain: str,
nickname: str, domain: str,
onionDomain: str, i2pDomain: str, port: int,
httpPrefix: str, federationList: [],
sendThreads: [], postLog: [],