Skip to content

Commit

Permalink
v0.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
9001 committed Mar 8, 2021
1 parent 96495a9 commit 7f2cb67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions copyparty/__version__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# coding: utf-8

VERSION = (0, 9, 6)
VERSION = (0, 9, 7)
CODENAME = "the strongest music server"
BUILD_DT = (2021, 3, 7)
BUILD_DT = (2021, 3, 8)

S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
Expand Down
6 changes: 3 additions & 3 deletions copyparty/httpcli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1282,18 +1282,18 @@ def tx_browser(self):
args = s3enc(idx.mem_cur, rd, fn)
r = icur.execute(q, args).fetchone()

tags = {}
f["tags"] = tags

if not r:
continue

w = r[0][:16]
tags = {}
q = "select k, v from mt where w = ? and k != 'x'"
for k, v in icur.execute(q, (w,)):
taglist[k] = True
tags[k] = v

f["tags"] = tags

if icur:
taglist = [k for k in self.args.mte.split(",") if k in taglist]
for f in dirs:
Expand Down

0 comments on commit 7f2cb67

Please sign in to comment.