mirror of https://github.com/ppy/osu
Use empty string instead of null because issue template not accept null.
This commit is contained in:
parent
505ec800da
commit
a1a9238bd1
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue