From 594ec39481b20302ba0bb8b7229192effc5f48ef Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 13 Dec 2025 20:09:08 +0000 Subject: [PATCH] fix ipu with idp users; closes #1094 --- copyparty/authsrv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyparty/authsrv.py b/copyparty/authsrv.py index 1fd5af99..27a7b401 100644 --- a/copyparty/authsrv.py +++ b/copyparty/authsrv.py @@ -1812,7 +1812,7 @@ class AuthSrv(object): derive_args(self.args) self.setup_auth_ord() - if self.args.ipu: + if self.args.ipu and not self.args.have_idp_hdrs: # syntax (CIDR=UNAME) is verified in load_ipu zsl = [x.split("=", 1)[1] for x in self.args.ipu] zsl = [x for x in zsl if x not in acct]