idac: hotfix for title port and changelog

This commit is contained in:
Dniel97 2023-11-13 17:32:39 +01:00
parent e561f8f15d
commit d1a7b898a7
Signed by untrusted user: Dniel97
GPG Key ID: 6180B3C768FB2E08
2 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,13 @@
# Changelog # Changelog
Documenting updates to ARTEMiS, to be updated every time the master branch is pushed to. Documenting updates to ARTEMiS, to be updated every time the master branch is pushed to.
## 20231015
### maimai DX
+ Added support for FESTiVAL PLUS
### Card Maker
+ Added support for maimai DX FESTiVAL PLUS
## 20231001 ## 20231001
### Initial D THE ARCADE ### Initial D THE ARCADE
+ Added support for Initial D THE ARCADE S2 + Added support for Initial D THE ARCADE S2
@ -13,13 +20,6 @@ Documenting updates to ARTEMiS, to be updated every time the master branch is pu
+ Frontend to download profile added + Frontend to download profile added
+ Importer to import profiles added + Importer to import profiles added
## 20231015
### maimai DX
+ Added support for FESTiVAL PLUS
### Card Maker
+ Added support for maimai DX FESTiVAL PLUS
## 20230716 ## 20230716
### General ### General
+ Docker files added (#19) + Docker files added (#19)

View File

@ -83,7 +83,7 @@ class IDACServlet:
self, game_code: str, game_ver: int, keychip: str self, game_code: str, game_ver: int, keychip: str
) -> Tuple[bool, str, str]: ) -> Tuple[bool, str, str]:
title_port_int = Utils.get_title_port(self.core_cfg) title_port_int = Utils.get_title_port(self.core_cfg)
t_port = f":{title_port_int}" if title_port_int != 80 and not self.core_cfg.server.is_using_proxy else "" t_port = f":{title_port_int}" if title_port_int and not self.core_cfg.server.is_using_proxy else ""
return ( return (
f"", f"",