page track counter fix

This commit is contained in:
localhost_frssoft 2022-04-02 03:26:36 +03:00
parent 77c62d575e
commit eefc247b64
1 changed files with 2 additions and 2 deletions

View File

@ -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