mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-04 05:35:52 +00:00
Empty should be null (#868)
This commit is contained in:
@@ -2176,7 +2176,7 @@ namespace MPF.Processors
|
||||
#endif
|
||||
|
||||
// Now that we're at the offsets, attempt to get the sample offset
|
||||
return string.Join("; ", [.. offsets]);
|
||||
return offsets.Count == 0 ? null : string.Join("; ", [.. offsets]);
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user