This commit is contained in:
ed 2021-03-21 22:05:46 +01:00
parent 963529b7cf
commit e815c091b9
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (0, 9, 9)
VERSION = (0, 9, 10)
CODENAME = "the strongest music server"
BUILD_DT = (2021, 3, 21)

View file

@ -58,7 +58,7 @@ function MPlayer() {
var links = document.querySelectorAll('#files>tbody>tr>td:nth-child(1)>a');
for (var a = 0, aa = links.length; a < aa; a++) {
var tid = links[a].getAttribute('id');
if (tid.indexOf('af-') !== 0)
if (!tid || tid.indexOf('af-') !== 0)
continue;
order.push(tid.slice(1));