diff options
-rw-r--r-- | lib/media/jao-mpc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/media/jao-mpc.el b/lib/media/jao-mpc.el index c610c2a..a634840 100644 --- a/lib/media/jao-mpc.el +++ b/lib/media/jao-mpc.el @@ -233,7 +233,7 @@ (let ((c (string-trim (jao-mpc--cmd "current" port)))) (unless (string-blank-p c) (when (string-match "\\(.+\\) - \\(.+\\)" c) - (cons (match-string 2 c) (match-string 1 c)))))) + (cons (match-string 1 c) (match-string 2 c)))))) ;;;###autoload (defun jao-mpc-connect (&optional port) |