chuni: add roomId to handle_get_matching_state_api_request, update changelog

This commit is contained in:
Hay1tsme 2024-01-08 20:21:27 -05:00
parent c9dfbc77c4
commit b4b40869c1
2 changed files with 5 additions and 1 deletions

View File

@ -23,6 +23,7 @@ Documenting updates to ARTEMiS, to be updated every time the master branch is pu
+ Add `matching` section to `chuni.yaml`
+ Change `udpHolePunchUri` and `reflectorUri` to be STUN and TURN servers
+ Imrpove `GetGameSetting` request handling for different versions
+ Fix issue where songs would not always return all scores [#92](https://gitea.tendokyu.moe/Hay1tsme/artemis/pulls/92) (Thanks Kumubou!)
### maimai DX
+ Fix user charges failing to save

View File

@ -659,4 +659,7 @@ class ChuniNew(ChuniBase):
"matchingMemberInfoList": [current_member] + diff_members,
}
return {"matchingWaitState": matching_wait}
return {
"roomId": data["roomId"],
"matchingWaitState": matching_wait
}