-
-
Notifications
You must be signed in to change notification settings - Fork 338
Description
RomM version
4.6.1
Describe the bug
when updating the rom data with a put request, you get stale data back instead of the updated one
To Reproduce
Initial data is:
{
"now_playing": true
}If you send a put update like:
{
"data": {
"now_playing": false
}
}You will receive
{
"now_playing": true
}Even though it has been changed. A second request is necessary to get the new data to confirm changes
Expected behavior
You receive the updated data, in this example
{
"now_playing": false
}Additional context
Bug might have been introduced during the fix of #2890, I didn't check in older versions
Reactions are currently unavailable