master
Bob Mottram 2019-08-18 14:45:24 +01:00
parent 7c232e59ae
commit a0989f2958
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def getPersonAvatarUrl(personUrl: str,personCache: {}) -> str:
if personJson:
if personJson.get('icon'):
if personJson['icon'].get('url'):
return prersonJson['icon']['url']
return personJson['icon']['url']
return None
def htmlSearchSharedItems(baseDir: str,searchStr: str,pageNumber: int,resultsPerPage: int,actor: str) -> str: