mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
37_plex.pm: play/pause/resume fix
git-svn-id: https://svn.fhem.de/fhem/trunk@11590 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
743c641525
commit
471eb4b93d
@ -950,9 +950,9 @@ plex_Set($$@)
|
||||
|
||||
return undef;
|
||||
|
||||
} elsif( $cmd eq 'pause' || $cmd eq 'playMedia' || $cmd eq 'resume' || $cmd eq 'stop'
|
||||
} elsif( $cmd eq 'pause' || $cmd eq 'play' || $cmd eq 'resume' || $cmd eq 'stop'
|
||||
|| $cmd eq 'skipNext' || $cmd eq 'skipPrevious' || $cmd eq 'stepBack' || $cmd eq 'stepForward' ) {
|
||||
return "$cmd not supported" if( $cmd ne 'pause' && $cmd ne 'playMedia' && $cmd ne 'resume'
|
||||
return "$cmd not supported" if( $cmd ne 'pause' && $cmd ne 'play' && $cmd ne 'resume'
|
||||
&& $hash->{controllable} && $hash->{controllable} !~ m/\b$cmd\b/ );
|
||||
if( ($cmd eq 'playMedia' || $cmd eq 'resume') && $hash->{STATE} eq 'stopped' ) {
|
||||
my $key = ReadingsVal($name,'key', undef);
|
||||
|
Loading…
Reference in New Issue
Block a user