Compare commits
2 Commits
a5fd6e65d6
...
69d3ff156a
Author | SHA1 | Date | |
---|---|---|---|
69d3ff156a | |||
31ce293a8c |
@ -1,6 +1,9 @@
|
|||||||
# 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.
|
||||||
|
|
||||||
|
## 20240526
|
||||||
|
+ Fixed missing awaits causing coroutine error
|
||||||
|
|
||||||
## 20240524
|
## 20240524
|
||||||
### DIVA
|
### DIVA
|
||||||
+ Fixed new profile start request causing coroutine error
|
+ Fixed new profile start request causing coroutine error
|
||||||
|
@ -54,7 +54,7 @@ class DivaCustomizeItemData(BaseData):
|
|||||||
Given a game version and an aime id, return the cstmz_itm_have hex string
|
Given a game version and an aime id, return the cstmz_itm_have hex string
|
||||||
required for diva directly
|
required for diva directly
|
||||||
"""
|
"""
|
||||||
items_list = self.get_customize_items(aime_id, version)
|
items_list = await self.get_customize_items(aime_id, version)
|
||||||
if items_list is None:
|
if items_list is None:
|
||||||
items_list = []
|
items_list = []
|
||||||
item_have = 0
|
item_have = 0
|
||||||
|
@ -50,7 +50,7 @@ class DivaModuleData(BaseData):
|
|||||||
Given a game version and an aime id, return the mdl_have hex string
|
Given a game version and an aime id, return the mdl_have hex string
|
||||||
required for diva directly
|
required for diva directly
|
||||||
"""
|
"""
|
||||||
module_list = self.get_modules(aime_id, version)
|
module_list = await self.get_modules(aime_id, version)
|
||||||
if module_list is None:
|
if module_list is None:
|
||||||
module_list = []
|
module_list = []
|
||||||
module_have = 0
|
module_have = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user