Skip to content

Commit c1bc370

Browse files
committed
parse to JSON after loaded data
1 parent 3aa2b39 commit c1bc370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: js/player/player.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@
251251
type: 'GET',
252252
url: theData,
253253
success: function(data){
254-
theData = data;
254+
theData = JSON.parse(data);
255255
_init();
256256
},
257257
error: function(xhr, type){

0 commit comments

Comments
 (0)