mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Fix logic error that prevented guests from seeing the privacy policy
This commit is contained in:
parent
3149d55b7d
commit
642505abc3
@ -141,7 +141,7 @@ class ConsentResource(Resource):
|
||||
username = parse_string(request, "u", required=False, default="")
|
||||
userhmac = None
|
||||
has_consented = False
|
||||
public_version = username != ""
|
||||
public_version = username == ""
|
||||
if not public_version:
|
||||
userhmac = parse_string(request, "h", required=True, encoding=None)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user