mirror of
https://github.com/osukey/osukey.git
synced 2025-05-21 21:47:31 +09: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 =>
|
users.GetUser(id).ContinueWith(u =>
|
||||||
{
|
{
|
||||||
|
if (u.Result == null)
|
||||||
|
return;
|
||||||
|
|
||||||
Schedule(() =>
|
Schedule(() =>
|
||||||
{
|
{
|
||||||
if (playingUsers.Contains(u.Result.Id))
|
if (playingUsers.Contains(u.Result.Id))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user