diff options
-rw-r--r-- | lisp/emms-player-mpg321-remote.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emms-player-mpg321-remote.el b/lisp/emms-player-mpg321-remote.el index 85f506c..de242ea 100644 --- a/lisp/emms-player-mpg321-remote.el +++ b/lisp/emms-player-mpg321-remote.el @@ -153,7 +153,8 @@ For example: (list \"-o\" \"alsa\")" (cond ;; stop notice ((and (string= cmd "@P") - (string= (cadr data) "0")) + (or (string= (cadr data) "0") + (string= (cadr data) "3"))) (emms-player-mpg321-remote-notify-emms)) ;; frame notice ((string= cmd "@F") |