1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 19:22:54 +08:00

Ignore null results for now

This commit is contained in:
Dean Herbert 2020-11-06 17:55:29 +09:00
parent 24be1e183b
commit c3c288145a

View File

@ -63,6 +63,9 @@ namespace osu.Game.Overlays.Dashboard
{
users.GetUser(id).ContinueWith(u =>
{
if (u.Result == null)
return;
Schedule(() =>
{
if (playingUsers.Contains(u.Result.Id))