From bc2c1e427a6ff62b0fa81d4e92822457dacc8ebc Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 23 Apr 2024 19:39:43 +0000 Subject: [PATCH] config-reset forgot the dots cookie --- copyparty/httpcli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyparty/httpcli.py b/copyparty/httpcli.py index 205a8849..1367e6b5 100644 --- a/copyparty/httpcli.py +++ b/copyparty/httpcli.py @@ -3656,7 +3656,7 @@ class HttpCli(object): return True def set_cfg_reset(self) -> bool: - for k in ("k304", "js", "idxh", "cppwd", "cppws"): + for k in ("k304", "js", "idxh", "dots", "cppwd", "cppws"): cookie = gencookie(k, "x", self.args.R, False) self.out_headerlist.append(("Set-Cookie", cookie))