mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
v0.9.10
This commit is contained in:
parent
963529b7cf
commit
e815c091b9
|
@ -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)
|
||||
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue