From e815c091b9a07e26bf498a0348f16c902dd085a2 Mon Sep 17 00:00:00 2001 From: ed Date: Sun, 21 Mar 2021 22:05:46 +0100 Subject: [PATCH] v0.9.10 --- copyparty/__version__.py | 2 +- copyparty/web/browser.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 02ceccf2..b0eb224c 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -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) diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index 8b065a3a..7c87a8f2 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -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));