1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 13:44:34 +08:00

Fix null reference in metadata wedge when accessing beatmap tags

This commit is contained in:
Salman Alshamrani
2025-06-23 00:41:12 +03:00
Unverified
parent 42e02c8de7
commit ef9fed47a9
@@ -1,6 +1,7 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
@@ -298,7 +299,11 @@ namespace osu.Game.Screens.SelectV2
else
source.Data = ("-", null);
mapperTags.Tags = (metadata.Tags.Split(' '), t => songSelect?.Search(t));
if (!string.IsNullOrEmpty(metadata.Tags))
mapperTags.Tags = (metadata.Tags.Split(' '), t => songSelect?.Search(t));
else
mapperTags.Tags = (Array.Empty<string>(), _ => { });
submitted.Date = beatmapSetInfo.DateSubmitted;
ranked.Date = beatmapSetInfo.DateRanked;