Parcourir la source

Add explicit UTF-8 charset in output.

Stefano Cossu il y a 2 ans
Parent
commit
9c2923906f
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  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