]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/views/submission.py
Dave does have a point.
[xonotic/xonstat.git] / xonstat / views / submission.py
index 36e094155953258fbf41ec33f95857c7b35a3e78..1c4f2fac3d95a85183bec3fbf25b6a898eeb684d 100755 (executable)
@@ -420,11 +420,9 @@ def parse_body(request):
             (key, value) = line.strip().split(' ', 1)\r
 \r
             # Server (S) and Nick (n) fields can have international characters.\r
-            # We first convert to UTF-8, then to ASCII. Characters will be lost\r
-            # in this conversion for the sake of presenting what otherwise \r
-            # would have to use CSS sprites.\r
+            # We convert to UTF-8.\r
             if key in 'S' 'n':\r
-                value = qfont_decode(unicode(value, 'utf-8'))\r
+                value = unicode(value, 'utf-8')\r
     \r
             if key in 'V' 'T' 'G' 'M' 'S' 'C' 'R' 'W':\r
                 game_meta[key] = value\r