This commit is contained in:
ed 2022-10-09 11:19:40 +02:00
parent 7dabdade2a
commit cecac64b68
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (1, 4, 4)
VERSION = (1, 4, 5)
CODENAME = "mostly reliable"
BUILD_DT = (2022, 10, 9)

View file

@ -621,7 +621,7 @@ class ThumbSrv(object):
def _clean(self, cat: str, thumbpath: str) -> int:
# self.log("cln {}".format(thumbpath))
exts = ["jpg", "webp"] if cat == "th" else ["opus", "caf"]
exts = ["jpg", "webp", "png"] if cat == "th" else ["opus", "caf"]
maxage = getattr(self.args, cat + "_maxage")
now = time.time()
prev_b64 = None