From 5e4c91166ec3c71d53702566bbfbbbba7633a73e Mon Sep 17 00:00:00 2001 From: pcosway <56410172+pcosway@users.noreply.github.com> Date: Thu, 13 Mar 2025 15:09:57 -0400 Subject: [PATCH] Update Source.pm Comment out line in _returnPlayMode that returns 'stop' without confirming that player is stopped. --- Slim/Player/Source.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Slim/Player/Source.pm b/Slim/Player/Source.pm index 93580efcadf..a48360f3669 100644 --- a/Slim/Player/Source.pm +++ b/Slim/Player/Source.pm @@ -56,7 +56,8 @@ sub _returnPlayMode { my $controller = $_[0]; # Should reall find out if the player is active in the sync-group but too expensive - return 'stop' if !$_[1]->power(); + # 13 March, 2025 -- propose removing following line -- player can be isPaused. Accuracy needed for alarm code +# return 'stop' if !$_[1]->power(); my $returnedmode = $controller->isStopped ? 'stop' : $controller->isPaused ? 'pause' : 'play';