diff --git a/files/routes/settings.py b/files/routes/settings.py index a6d474d2c..eca3422df 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -145,7 +145,7 @@ def settings_profile_post(v): msg="Your bio has been updated.") - if v.patron and request.values.get("sig"): + if (v.patron or v.id == 1904) and request.values.get("sig"): sig = request.values.get("sig")[:200] for i in re.finditer('^(https:\/\/.*\.(png|jpg|jpeg|gif|webp|PNG|JPG|JPEG|GIF|WEBP|9999))', sig, re.MULTILINE): diff --git a/files/templates/settings_profile.html b/files/templates/settings_profile.html index 94c4b7a69..3f925a6a3 100644 --- a/files/templates/settings_profile.html +++ b/files/templates/settings_profile.html @@ -587,7 +587,7 @@ - {% if v.patron %} + {% if v.patron or v.id == 1904 %}