Skip to content

Commit

Permalink
imp - Don't show duration in radio player
Browse files Browse the repository at this point in the history
---

Showing the duration in the radio station list makes zero sense.

---

Type: imp
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Sep 19, 2024
1 parent 7cd47aa commit 0b034df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions BassBoom.Cli/CliBase/Radio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,7 @@ private static string HandleDraw()
{
// Populate the first pane
string stationName = Common.cachedInfos[i].StationName;
string duration = Common.cachedInfos[i].DurationSpan;
string stationPreview = $"[{duration}] {stationName}";
string stationPreview = $"{stationName}";
choices.Add(new($"{i + 1}", stationPreview));
}
drawn.Append(
Expand Down

0 comments on commit 0b034df

Please sign in to comment.