Skip to content

Commit

Permalink
v1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
9001 committed Oct 9, 2022
1 parent 7dabdad commit cecac64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion copyparty/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8

VERSION = (1, 4, 4)
VERSION = (1, 4, 5)
CODENAME = "mostly reliable"
BUILD_DT = (2022, 10, 9)

Expand Down
2 changes: 1 addition & 1 deletion copyparty/th_srv.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ def clean(self, histpath: str) -> int:

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
Expand Down

0 comments on commit cecac64

Please sign in to comment.