Browse Source

osx: fix exit on unknown command in spotify function (#8375)

Péter HÉJA 5 years ago
parent
commit
e453731fc9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/osx/spotify

+ 1 - 1
plugins/osx/spotify

@@ -470,7 +470,7 @@ while [ $# -gt 0 ]; do
             break ;;
         * )
             showHelp;
-            exit 1;
+            break;
 
     esac
 done