mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Add safety against performing operation on non-alive foundContent
This commit is contained in:
@ -223,7 +223,7 @@ namespace osu.Game.Overlays
|
|||||||
|
|
||||||
private void onCardSizeChanged()
|
private void onCardSizeChanged()
|
||||||
{
|
{
|
||||||
if (foundContent == null || !foundContent.Any())
|
if (foundContent?.IsAlive != true || !foundContent.Any())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Loading.Show();
|
Loading.Show();
|
||||||
|
Reference in New Issue
Block a user