From 200d0a369f0aae45434ed207ca2e59fa0a36f58a Mon Sep 17 00:00:00 2001 From: Martin Herkt Date: Tue, 1 Nov 2016 21:53:10 +0100 Subject: fix text/ MIME charset workaround --- fhost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhost.py b/fhost.py index 1b9a4c7..ce48c03 100755 --- a/fhost.py +++ b/fhost.py @@ -143,7 +143,7 @@ def store_file(f, addr): if mime in app.config["FHOST_MIME_BLACKLIST"] or guessmime in app.config["FHOST_MIME_BLACKLIST"]: abort(415) - if mime.startswith("text/") and not "charset" in f.mime: + if mime.startswith("text/") and not "charset" in f.content_type: mime += "; charset=utf-8" ext = os.path.splitext(f.filename)[1] -- cgit v1.2.3