mai2: fix for dx 1.00

This commit is contained in:
Kevin Trocolli
2023-05-03 22:29:08 -04:00
parent 6d1855a6bc
commit d0242b456d
2 changed files with 10 additions and 3 deletions

View File

@@ -82,13 +82,13 @@ class Mai2Servlet:
return (
True,
f"http://{core_cfg.title.hostname}:{core_cfg.title.port}/{game_code}/$v/",
f"{core_cfg.title.hostname}:{core_cfg.title.port}/",
f"{core_cfg.title.hostname}:{core_cfg.title.port}",
)
return (
True,
f"http://{core_cfg.title.hostname}/{game_code}/$v/",
f"{core_cfg.title.hostname}/",
f"{core_cfg.title.hostname}",
)
def render_POST(self, request: Request, version: int, url_path: str) -> bytes: