mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
Remove userdialog playtime & fix screenshot search worldName
This commit is contained in:
@@ -101,7 +101,10 @@ namespace VRCX
|
||||
|
||||
break;
|
||||
case ScreenshotSearchType.WorldName:
|
||||
if (metadata.World.Name.IndexOf(query, StringComparison.OrdinalIgnoreCase) != -1)
|
||||
if (metadata.World.Name == null)
|
||||
continue;
|
||||
|
||||
if (metadata.World.Name.Contains(query, StringComparison.OrdinalIgnoreCase))
|
||||
result.Add(metadata);
|
||||
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user