Aevann 2024-07-21 19:10:53 +03:00
parent 96fc4ffee5
commit 47b2a76431
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ def settings_personal_post(v):
updated = True
elif request.values.get("reddit", v.reddit) != v.reddit:
reddit = request.values.get("reddit")
if reddit in {'old.reddit.com', 'new.reddit.com', 'reddit.com', 'undelete.pullpush.io'}:
if reddit in {'old.reddit.com', 'new.reddit.com', 'sh.reddit.com', 'reddit.com', 'undelete.pullpush.io'}:
updated = True
v.reddit = reddit
elif request.values.get("poor", v.poor) != v.poor:

View File

@ -129,7 +129,7 @@
<p>Change the domain you would like to view reddit posts in.</p>
<div class="input-group">
<select autocomplete="off" id='reddit' class="form-control setting_select" data-nonce="{{g.nonce}}" form="profile-settings" name="reddit">
{% for entry in ['old.reddit.com', 'new.reddit.com', 'reddit.com', 'undelete.pullpush.io'] %}
{% for entry in ['old.reddit.com', 'new.reddit.com', 'sh.reddit.com', 'reddit.com', 'undelete.pullpush.io'] %}
<option value="{{entry}}" {{'selected' if v.reddit == entry}}>{{entry}}</option>
{% endfor %}
</select>