0x0

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 6de22ca8fa1cc71b21984278b4c50dd5559de6ee
parent 200d0a369f0aae45434ed207ca2e59fa0a36f58a
Author: Martin Herkt <lachs0r@srsfckn.biz>
Date:   Wed, 23 Nov 2016 01:03:49 +0100

fix text/ MIME charset workaround for real

Diffstat:
Mfhost.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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.content_type: + if mime.startswith("text/") and not "charset" in mime: mime += "; charset=utf-8" ext = os.path.splitext(f.filename)[1]