mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Add null checks to unguarded resolved-as-null fields
This commit is contained in:
@ -59,6 +59,9 @@ namespace osu.Game.Screens.Multi.Lounge.Components
|
||||
{
|
||||
scheduledFilterUpdate?.Cancel();
|
||||
|
||||
if (filter == null)
|
||||
return;
|
||||
|
||||
filter.Value = new FilterCriteria
|
||||
{
|
||||
SearchString = Search.Current.Value ?? string.Empty,
|
||||
|
Reference in New Issue
Block a user