浏览代码

Add explicit UTF-8 charset in output.

Stefano Cossu 2 年之前
父节点
当前提交
9c2923906f
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5 2
      transliterator/rest_api.py

+ 5 - 2
transliterator/rest_api.py

@@ -59,6 +59,9 @@ def transliterate_req(lang, r2s=False):
     if not len(in_txt):
         return ("No input text provided! ", 400)
 
-    return Response(
+    rsp = Response(
             transliterate(in_txt, lang, r2s),
-            content_type="text/plain")
+            mimetype="text/plain")
+    rsp.headers["Content-Type"] = "text/plain; charset=utf-8"
+
+    return rsp