diff --git a/funkwhale-cli.sh b/funkwhale-cli.sh index 10e2204..a1b7fc2 100755 --- a/funkwhale-cli.sh +++ b/funkwhale-cli.sh @@ -63,8 +63,8 @@ load_tracks_to_playlist() echo "https://$instance$i\n" >> playlist.m3u8 done count_tracks_results=$(jj -i preload 'results.#') - if [ -z $count_tracks_results ]; then - echo 'Error: Page empty or 500 Internal Server Error' + if [ -z $count_tracks_results ] || [ $count_tracks_results -eq 0 ]; then + echo 'Error: Page empty or connection error' else echo "Loaded $count_tracks_results tracks" fi