diff --git a/BassBoom.Cli/CliBase/Player.cs b/BassBoom.Cli/CliBase/Player.cs index 3953e5c..8df7d32 100644 --- a/BassBoom.Cli/CliBase/Player.cs +++ b/BassBoom.Cli/CliBase/Player.cs @@ -159,14 +159,10 @@ private static void HandleKeypressIdleMode(ConsoleKeyInfo keystroke, Screen play case ConsoleKey.B: PlayerControls.SeekBeginning(); PlayerControls.PreviousSong(); - playerThread = new(HandlePlay); - PlayerControls.Play(); break; case ConsoleKey.N: PlayerControls.SeekBeginning(); PlayerControls.NextSong(); - playerThread = new(HandlePlay); - PlayerControls.Play(); break; case ConsoleKey.I: PlayerControls.ShowSongInfo(); diff --git a/BassBoom.Cli/CliBase/Radio.cs b/BassBoom.Cli/CliBase/Radio.cs index 4c2d113..e5a78a1 100644 --- a/BassBoom.Cli/CliBase/Radio.cs +++ b/BassBoom.Cli/CliBase/Radio.cs @@ -148,13 +148,9 @@ private static void HandleKeypressIdleMode(ConsoleKeyInfo keystroke, Screen play break; case ConsoleKey.B: RadioControls.PreviousStation(); - playerThread = new(HandlePlay); - RadioControls.Play(); break; case ConsoleKey.N: RadioControls.NextStation(); - playerThread = new(HandlePlay); - RadioControls.Play(); break; case ConsoleKey.I: RadioControls.ShowStationInfo();