diff options
author | Martin Herkt <lachs0r@srsfckn.biz> | 2016-11-23 01:03:49 +0100 |
---|---|---|
committer | Martin Herkt <lachs0r@srsfckn.biz> | 2016-11-23 01:03:49 +0100 |
commit | 6de22ca8fa1cc71b21984278b4c50dd5559de6ee (patch) | |
tree | 5efd48fd584961904543e1da5b634956c583247d | |
parent | fix text/ MIME charset workaround (diff) | |
download | hex-zero-6de22ca8fa1cc71b21984278b4c50dd5559de6ee.tar.gz hex-zero-6de22ca8fa1cc71b21984278b4c50dd5559de6ee.tar.bz2 hex-zero-6de22ca8fa1cc71b21984278b4c50dd5559de6ee.zip |
fix text/ MIME charset workaround for real
-rwxr-xr-x | fhost.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] |