mirror of
https://github.com/9001/copyparty.git
synced 2026-01-12 15:52:39 -07:00
fix controlpanel greeting in early responses;
responses sent early during request processing (primarily for invalid requests) would display the username " " rater than "*" in the controlpanel, in one case leading to user confusion
This commit is contained in:
parent
cedfc44420
commit
acde21d484
|
|
@ -247,7 +247,7 @@ class HttpCli(object):
|
||||||
self.dl_id = ""
|
self.dl_id = ""
|
||||||
self.gctx = " " # additional context for garda
|
self.gctx = " " # additional context for garda
|
||||||
self.trailing_slash = True
|
self.trailing_slash = True
|
||||||
self.uname = " "
|
self.uname = "*"
|
||||||
self.pw = ""
|
self.pw = ""
|
||||||
self.rvol = self.wvol = self.avol = empty_stringlist
|
self.rvol = self.wvol = self.avol = empty_stringlist
|
||||||
self.do_log = True
|
self.do_log = True
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue