mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 11:24:49 -04:00
None check the correct variable
This commit is contained in:
parent
f02532baad
commit
53c2eed862
1 changed files with 3 additions and 2 deletions
|
@ -150,7 +150,8 @@ class BaseMediaResource(Resource):
|
|||
upload_name = None
|
||||
else:
|
||||
upload_name_utf8 = params.get("filename*", None)
|
||||
if upload_name and upload_name_utf8.lower().startswith("utf-8''"):
|
||||
if upload_name_utf8:
|
||||
if upload_name_utf8.lower().startswith("utf-8''"):
|
||||
upload_name = upload_name_utf8[7:]
|
||||
if upload_name:
|
||||
upload_name = urlparse.unquote(upload_name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue