Fixed bad url decoding in song titles

This commit is contained in:
Nicolas A. Tonne
2014-10-15 14:34:03 +02:00
parent 3958290ec9
commit b2690e25fd
2 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ function updateList()
$.each(list["songs"], function(j, listeID){
var video_title=listeID["title"].replace(/\\\'/, "'");
var video_title=listeID["title"].replace(/\\\'/g, "'");
var video_id = listeID["id"];
var video_thumb = "http://i.ytimg.com/vi/"+video_id+"/default.jpg";
var odd = ""; if(j%2==0)odd=" oddlist";