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:
parent
24be1e183b
commit
c3c288145a
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user