Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Slim/Player/Source.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down