split first half

master
Bob Mottram 2019-08-22 14:21:16 +01:00
parent 1dc1ee9d3b
commit 4e3d868b10
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def getPreferredName(actor: str,personCache: {}) -> str:
if not personCache.get(actor):
return None
if '/statuses/' in actor:
actor=actor.split('/statuses/')
actor=actor.split('/statuses/')[0]
if personCache[actor].get('actor'):
if personCache[actor]['actor'].get('preferredUsername'):
return personCache[actor]['actor']['preferredUsername']