/queue: Use AppendLine to show queue properly

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2023-12-17 18:29:35 +03:00
parent 457c5ce744
commit 24e3a4badb
Signed by: mctaylors
GPG key ID: 7181BEBE676903C1

View file

@ -89,7 +89,7 @@ public sealed class InfoCommandGroup(
return Result.FromSuccess(); // dunno return Result.FromSuccess(); // dunno
} }
builder.Append($"{i + 1}. ").Append(track.Display(true)); builder.Append($"{i + 1}. ").AppendLine(track.Display(true));
} }
return Result.FromSuccess(); return Result.FromSuccess();