mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Stopped sorting on songchange, pushing the shifted value from the playlist array
This commit is contained in:
@@ -68,11 +68,12 @@ function channel_function(msg)
|
|||||||
full_playlist[0].guids = [];
|
full_playlist[0].guids = [];
|
||||||
full_playlist[0].added = msg[1];
|
full_playlist[0].added = msg[1];
|
||||||
full_playlist[full_playlist.length-1].now_playing = false;
|
full_playlist[full_playlist.length-1].now_playing = false;
|
||||||
full_playlist.sort(predicate({
|
/*full_playlist.sort(predicate({
|
||||||
name: 'votes',
|
name: 'votes',
|
||||||
reverse: true
|
reverse: true
|
||||||
}, 'added'));
|
}, 'added'));
|
||||||
|
*/
|
||||||
|
full_playlist.push(full_playlist.shift());
|
||||||
populate_list(full_playlist);
|
populate_list(full_playlist);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user