From b6c2ec15dbd421480136bb4f78fbf13c9aa0fa82 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 17 Dec 2025 00:01:23 +0000 Subject: [PATCH] fix `@acct` without `idp-h-grp`; closes #1113 --- copyparty/authsrv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyparty/authsrv.py b/copyparty/authsrv.py index 94248023..a683d346 100644 --- a/copyparty/authsrv.py +++ b/copyparty/authsrv.py @@ -1590,7 +1590,7 @@ class AuthSrv(object): uns = [x[0] for x in un_gns.items() if grp in x[1]] if grp == "${g}": unames.append(un) - elif not uns and not self.args.idp_h_grp: + elif not uns and not self.args.idp_h_grp and grp != self.args.grp_all: t = "group [%s] must be defined with --grp argument (or in a [groups] config section)" raise CfgEx(t % (grp,))