Correct playlist not updated when empty close #30

This commit is contained in:
Sebastien 2018-03-05 10:58:12 +01:00
parent e0043b81fd
commit a9ca04ecef

View File

@ -177,7 +177,7 @@ function getPlayList() {
data = data.list;
if(data != null && data.length != 0){
var noUpdate = comparePlaylist(data, savedPlaylist);
// console.log("List up to date : "+noUpdate);
if(!noUpdate){
savedPlaylist = data;
$('#playlist_list').empty();
@ -208,8 +208,11 @@ function getPlayList() {
});
}
}
else
else{
$('#playlist_list').empty();
savedPlaylist = {};
}
}).fail(function (data) {
if(!error){
alert("Comunication error, please refresh.");