mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-06 07:56:51 +00:00
Fix logic error that prevented guests from seeing the privacy policy
This commit is contained in:
parent
3149d55b7d
commit
642505abc3
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue