We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8d3a98 commit 9e2b4f0Copy full SHA for 9e2b4f0
lidarr/TidalVideoDownloader.bash
@@ -1,5 +1,5 @@
1
#!/usr/bin/with-contenv bash
2
-scriptVersion="1.6"
+scriptVersion="1.7"
3
scriptName="TidalVideoDownloader"
4
5
#### Import Settings
@@ -208,6 +208,7 @@ VideoProcess () {
208
lidarrArtists=$(wget --timeout=0 -q -O - "$arrUrl/api/v1/artist?apikey=$arrApiKey" | jq -r .[])
209
lidarrArtistIds=$(echo $lidarrArtists | jq -r .id)
210
lidarrArtistCount=$(echo "$lidarrArtistIds" | wc -l)
211
+ processCount=0
212
for lidarrArtistId in $(echo $lidarrArtistIds); do
213
processCount=$(( $processCount + 1))
214
lidarrArtistData=$(wget --timeout=0 -q -O - "$arrUrl/api/v1/artist/$lidarrArtistId?apikey=$arrApiKey")
0 commit comments