From 31219c02463f1f57271a3d336b4c25b9902ca4ad Mon Sep 17 00:00:00 2001 From: Carver Schmidt <46279291+carverschmidt@users.noreply.github.com> Date: Sat, 28 Dec 2019 11:01:26 -0600 Subject: [PATCH] osx: fix exit on quit command in spotify function (#8504) --- plugins/osx/spotify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/osx/spotify b/plugins/osx/spotify index 78d6c7d0f..6233d813d 100644 --- a/plugins/osx/spotify +++ b/plugins/osx/spotify @@ -307,7 +307,7 @@ while [ $# -gt 0 ]; do "quit" ) cecho "Quitting Spotify."; osascript -e 'tell application "Spotify" to quit'; - exit 0 ;; + break ;; "next" ) cecho "Going to next track." ; osascript -e 'tell application "Spotify" to next track';