mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Use empty string instead of null because issue template not accept null.
This commit is contained in:
@ -72,7 +72,7 @@ namespace osu.Game.Rulesets.Edit.Checks
|
||||
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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user