From da148f8e9ee1da08f013691b4dbac17a7a4ccba5 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 27 May 2020 15:21:28 +0100 Subject: [PATCH] Don't set actorchanged flag when font is uploaded --- daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 285553596..355555a1c 100644 --- a/daemon.py +++ b/daemon.py @@ -5485,7 +5485,7 @@ class PubServer(BaseHTTPRequestHandler): if os.path.isfile(postImageFilename): print('profile update POST ' + mType + ' image or font saved to ' + postImageFilename) - if mType != 'instanceLogo': + if mType != 'instanceLogo' and mType != 'customFont': lastPartOfImageFilename = \ postImageFilename.split('/')[-1] profileMediaTypesUploaded[mType] = \