Use empty string instead of null because issue template not accept null.

This commit is contained in:
andy840119 2022-10-30 16:31:07 +08:00
parent 505ec800da
commit a1a9238bd1
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ private IEnumerable<Issue> getVolumeIssues(HitObject hitObject, HitObject? sampl
if (edgeType == EdgeType.None)
yield break;
string postfix = hitObject is IHasDuration ? edgeType.ToString().ToLowerInvariant() : null;
string postfix = hitObject is IHasDuration ? edgeType.ToString().ToLowerInvariant() : string.Empty;
if (maxVolume <= muted_threshold)
{