1
0
Fork 0

ongeki: bump schema ver, fix error if events lookup fails

This commit is contained in:
Hay1tsme 2023-11-29 18:56:57 -05:00
parent 46f61325cb
commit 662fd05d24
2 changed files with 8 additions and 2 deletions

View File

@ -9,4 +9,4 @@ database = OngekiData
reader = OngekiReader
frontend = OngekiFrontend
game_codes = [OngekiConstants.GAME_CODE]
current_schema_version = 5
current_schema_version = 6

View File

@ -171,7 +171,6 @@ class OngekiBase:
"gameRankingList": ranking_list,
}
def handle_get_game_point_api_request(self, data: Dict) -> Dict:
get_game_point = self.data.static.get_static_game_point()
game_point = []
@ -314,6 +313,13 @@ class OngekiBase:
def handle_get_game_event_api_request(self, data: Dict) -> Dict:
evts = self.data.static.get_enabled_events(self.version)
if evts is None:
return {
"type": data["type"],
"length": 0,
"gameEventList": [],
}
evt_list = []
for event in evts:
evt_list.append(