diva: fix handle_start_request

This commit is contained in:
2024-05-24 10:13:04 -04:00
committed by beerpsi
parent d68aa5c20a
commit c24e3f2901
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
# 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.
## 20240524
### DIVA
+ Fixed new profile start request causing coroutine error
## 20240523 ## 20240523
### DIVA ### DIVA
+ Fixed binary handler & render_POST errors + Fixed binary handler & render_POST errors

View File

@ -431,7 +431,7 @@ class DivaBase:
profile = await self.data.profile.get_profile(data["pd_id"], self.version) profile = await self.data.profile.get_profile(data["pd_id"], self.version)
profile_shop = await self.data.item.get_shop(data["pd_id"], self.version) profile_shop = await self.data.item.get_shop(data["pd_id"], self.version)
if profile is None: if profile is None:
return return {}
mdl_have = "F" * 250 mdl_have = "F" * 250
# generate the mdl_have string if "unlock_all_modules" is disabled # generate the mdl_have string if "unlock_all_modules" is disabled