Fix statistics update not being shown on results screen if it arrives too fast

As reported in
https://discord.com/channels/188630481301012481/1097318920991559880/1288160137286258799.
This commit is contained in:
Bartłomiej Dach 2024-09-24 17:52:19 +02:00
parent 555d4ffe89
commit 20e7ade3b0
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ private void load(UserStatisticsWatcher? userStatisticsWatcher)
{
if (update.NewValue?.Score.MatchesOnlineID(achievedScore) == true)
DisplayedUserStatisticsUpdate.Value = update.NewValue;
});
}, true);
}
}