mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Fixed error with searchSpotify not defined
This commit is contained in:
4
public/dist/embed.min.js
vendored
4
public/dist/embed.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -472,7 +472,7 @@ var List = {
|
|||||||
var retryAfter = err.getResponseHeader("Retry-After");
|
var retryAfter = err.getResponseHeader("Retry-After");
|
||||||
retryAfter = parseInt(retryAfter, 10);
|
retryAfter = parseInt(retryAfter, 10);
|
||||||
setTimeout(function(){
|
setTimeout(function(){
|
||||||
searchSpotify(curr_song);
|
List.searchSpotify(curr_song);
|
||||||
}, retryAfter * 1000);
|
}, retryAfter * 1000);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -506,6 +506,7 @@ var List = {
|
|||||||
if(decodeURIComponent(track).indexOf(data.artists[0].name.toLowerCase()) >= 0 && decodeURIComponent(track).indexOf(data.name.toLowerCase()) >= 0){
|
if(decodeURIComponent(track).indexOf(data.artists[0].name.toLowerCase()) >= 0 && decodeURIComponent(track).indexOf(data.name.toLowerCase()) >= 0){
|
||||||
found = true;
|
found = true;
|
||||||
List.uris.push(data.uri);
|
List.uris.push(data.uri);
|
||||||
|
Helper.log("Found", track);
|
||||||
//List.num_songs = List.num_songs + 1;
|
//List.num_songs = List.num_songs + 1;
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
@@ -519,6 +520,7 @@ var List = {
|
|||||||
}
|
}
|
||||||
found = true;
|
found = true;
|
||||||
List.uris.push(data.uri);
|
List.uris.push(data.uri);
|
||||||
|
Helper.log("Found", track);
|
||||||
//List.num_songs = List.num_songs + 1;
|
//List.num_songs = List.num_songs + 1;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -526,6 +528,7 @@ var List = {
|
|||||||
if(!found){
|
if(!found){
|
||||||
List.not_found.push(original_track);
|
List.not_found.push(original_track);
|
||||||
List.num_songs = List.num_songs + 1;
|
List.num_songs = List.num_songs + 1;
|
||||||
|
Helper.log("Didn't find", original_track);
|
||||||
}
|
}
|
||||||
if(List.num_songs + List.uris.length == full_playlist.length){
|
if(List.num_songs + List.uris.length == full_playlist.length){
|
||||||
if(List.uris.length > 100){
|
if(List.uris.length > 100){
|
||||||
|
|||||||
Reference in New Issue
Block a user