mirror of
https://github.com/9001/copyparty.git
synced 2026-01-12 07:44:08 -07:00
fix ipu nullmapping; closes #1191
regression added in v1.19.21 / 79e1078671
This commit is contained in:
parent
ae56f3bdae
commit
caf831fc28
|
|
@ -1829,7 +1829,7 @@ class AuthSrv(object):
|
|||
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]
|
||||
zsl = [x for x in zsl if x and x not in acct]
|
||||
if zsl:
|
||||
t = "ERROR: unknown users in ipu: %s" % (zsl,)
|
||||
self.log(t, 1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue