]> git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Oops, it should be application/json not text/json.
authorAnt Zucaro <azucaro@gmail.com>
Sun, 23 Oct 2016 15:36:15 +0000 (11:36 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Sun, 23 Oct 2016 15:36:15 +0000 (11:36 -0400)
xonstat/__init__.py

index 2b26e29822ffadb5ca1f242d2daecb2f43cff06f..aca302daadba45bd1236a20a9f599989084d1f8a 100644 (file)
@@ -138,31 +138,31 @@ def main(global_config, **settings):
     config.add_view(view=ServerIndex, route_name="server_index", attr="html",
                     renderer="server_index.mako", accept="text/html")
     config.add_view(view=ServerIndex, route_name="server_index", attr="json", renderer="json",
-                    accept="text/json")
+                    accept="application/json")
 
     config.add_route("server_top_maps", "/server/{id:\d+}/topmaps")
     config.add_view(view=ServerTopMaps, route_name="server_top_maps", attr="html",
                     renderer="server_top_maps.mako", accept="text/html")
     config.add_view(view=ServerTopMaps, route_name="server_top_maps", attr="json", renderer="json",
-                    accept="text/json")
+                    accept="application/json")
 
     config.add_route("server_top_active", "/server/{id:\d+}/topactive")
     config.add_view(view=ServerTopPlayers, route_name="server_top_active", attr="html",
                     renderer="server_top_active.mako", accept="text/html")
     config.add_view(view=ServerTopPlayers, route_name="server_top_active", attr="json",
-                    renderer="json", accept="text/json")
+                    renderer="json", accept="application/json")
 
     config.add_route("server_top_scorers", "/server/{id:\d+}/topscorers")
     config.add_view(view=ServerTopScorers, route_name="server_top_scorers", attr="html",
                     renderer="server_top_scorers.mako", accept="text/html")
     config.add_view(view=ServerTopScorers, route_name="server_top_scorers", attr="json",
-                    renderer="json", accept="text/json")
+                    renderer="json", accept="application/json")
 
     config.add_route("server_info", "/server/{id:\d+}")
     config.add_view(view=ServerInfo, route_name="server_info", attr="html",
                     renderer="server_info.mako", accept="text/html")
     config.add_view(view=ServerInfo, route_name="server_info", attr="json", renderer="json",
-                    accept="text/json")
+                    accept="application/json")
 
     # MAP ROUTES
     config.add_route("map_index",      "/maps")