forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-07-26 05:29:18 +02:00
parent aedb74c912
commit 000b0aa970
2 changed files with 0 additions and 6 deletions

View File

@ -17,7 +17,6 @@ def feeds_user(sort='hot', t='all'):
page=page,
t=t,
v=None,
hide_offensive=False,
ids_only=False)
domain = environ.get(

View File

@ -45,11 +45,6 @@ def settings_profile_post(v):
if request.values.get("over18", v.over_18) != v.over_18:
updated = True
v.over_18 = request.values.get("over18", None) == 'true'
if request.values.get("hide_offensive",
v.hide_offensive) != v.hide_offensive:
updated = True
v.hide_offensive = request.values.get("hide_offensive", None) == 'true'
if request.values.get("private", v.is_private) != v.is_private:
updated = True