diff --git a/files/routes/awards.py b/files/routes/awards.py index 4157a16f5..5abef536b 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -180,7 +180,7 @@ def buy(v, award): @auth_required def award_post(pid, v): - if v.shadowbanned: return render_template('errors/500.html', error=True, v=v), 500 + if v.shadowbanned: return render_template('errors/500.html', err=True, v=v), 500 kind = request.values.get("kind", "").strip() @@ -366,7 +366,7 @@ def award_post(pid, v): @auth_required def award_comment(cid, v): - if v.shadowbanned: return render_template('errors/500.html', error=True, v=v), 500 + if v.shadowbanned: return render_template('errors/500.html', err=True, v=v), 500 kind = request.values.get("kind", "").strip() diff --git a/files/routes/comments.py b/files/routes/comments.py index 4b530ec6e..f9f0915ca 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -484,7 +484,6 @@ def api_comment(v): 'notification': { 'title': f'New reply by @{v.username}', 'body': notifbody, - 'click_action': 'android.intent.category.DEFAULT', }, 'data': { 'url': f'comment/{c.id}?context=9&read=true#context', diff --git a/files/routes/errors.py b/files/routes/errors.py index 78e046ff1..be193f3c7 100644 --- a/files/routes/errors.py +++ b/files/routes/errors.py @@ -8,7 +8,7 @@ from files.__main__ import app, limiter @app.errorhandler(400) def error_400(e): if request.headers.get("Authorization"): return {"error": "400 Bad Request"}, 400 - else: return render_template('errors/400.html', error=True), 400 + else: return render_template('errors/400.html', err=True), 400 @app.errorhandler(401) def error_401(e): @@ -25,25 +25,25 @@ def error_401(e): @app.errorhandler(403) def error_403(e): if request.headers.get("Authorization"): return {"error": "403 Forbidden"}, 403 - else: return render_template('errors/403.html', error=True), 403 + else: return render_template('errors/403.html', err=True), 403 @app.errorhandler(404) def error_404(e): if request.headers.get("Authorization"): return {"error": "404 Not Found"}, 404 - else: return render_template('errors/404.html', error=True), 404 + else: return render_template('errors/404.html', err=True), 404 @app.errorhandler(405) def error_405(e): if request.headers.get("Authorization"): return {"error": "405 Method Not Allowed"}, 405 - else: return render_template('errors/405.html', error=True), 405 + else: return render_template('errors/405.html', err=True), 405 @app.errorhandler(429) def error_429(e): if request.headers.get("Authorization"): return {"error": "429 Too Many Requests"}, 429 - else: return render_template('errors/429.html', error=True), 429 + else: return render_template('errors/429.html', err=True), 429 @app.errorhandler(500) @@ -51,7 +51,7 @@ def error_500(e): g.db.rollback() if request.headers.get("Authorization"): return {"error": "500 Internal Server Error"}, 500 - else: return render_template('errors/500.html', error=True), 500 + else: return render_template('errors/500.html', err=True), 500 @app.post("/allow_nsfw") diff --git a/files/routes/users.py b/files/routes/users.py index d6096651f..37ced1c55 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -452,7 +452,6 @@ def message2(v, username): 'notification': { 'title': f'New message from @{v.username}', 'body': notifbody, - 'click_action': 'android.intent.category.DEFAULT', }, 'data': { 'url': f'notifications', diff --git a/files/templates/header.html b/files/templates/header.html index 94d2aa7f6..f55590467 100644 --- a/files/templates/header.html +++ b/files/templates/header.html @@ -15,7 +15,7 @@
-
- {% if not error %} + {% if not err %} {% if v and v.admin_level > 1 %} @@ -226,6 +226,6 @@ } -{% if v and not error %} +{% if v and not err %}
{{v.formkey}}
{% endif %} \ No newline at end of file