Fix crash after pressing F5 and coming back from stickers

This commit is contained in:
gamerbross 2024-06-20 07:24:36 +02:00
parent 9908f973cf
commit 73efd963b9
2 changed files with 2 additions and 2 deletions

View file

@ -214,7 +214,7 @@ class FreeplayState extends MusicBeatSubState
prepForNewRank = true; prepForNewRank = true;
} }
if (stickers != null) if (stickers?.members != null)
{ {
stickerSubState = stickers; stickerSubState = stickers;
} }

View file

@ -113,7 +113,7 @@ class StoryMenuState extends MusicBeatState
{ {
super(); super();
if (stickers != null) if (stickers?.members != null)
{ {
stickerSubState = stickers; stickerSubState = stickers;
} }