Don't set actorchanged flag when font is uploaded

main
Bob Mottram 2020-05-27 15:21:28 +01:00
parent ff1dc94378
commit da148f8e9e
1 changed files with 1 additions and 1 deletions

View File

@ -5485,7 +5485,7 @@ class PubServer(BaseHTTPRequestHandler):
if os.path.isfile(postImageFilename): if os.path.isfile(postImageFilename):
print('profile update POST ' + mType + print('profile update POST ' + mType +
' image or font saved to ' + postImageFilename) ' image or font saved to ' + postImageFilename)
if mType != 'instanceLogo': if mType != 'instanceLogo' and mType != 'customFont':
lastPartOfImageFilename = \ lastPartOfImageFilename = \
postImageFilename.split('/')[-1] postImageFilename.split('/')[-1]
profileMediaTypesUploaded[mType] = \ profileMediaTypesUploaded[mType] = \