# HG changeset patch # User Nicholas Jillings # Date 1505148723 -3600 # Node ID 0dd44ca5d062876b63652b8270c906290fa99496 # Parent 260efd43fe523c742f0518d26e11e5d24f09f8d8 Better fix for #224 diff -r 260efd43fe52 -r 0dd44ca5d062 interfaces/ABX.js --- a/interfaces/ABX.js Mon Sep 11 17:41:40 2017 +0100 +++ b/interfaces/ABX.js Mon Sep 11 17:52:03 2017 +0100 @@ -271,10 +271,7 @@ }; this.updateLoading = function (progress) { // progress is a value from 0 to 100 indicating the current download state of media files - if (label == "X" || label == "x") { - this.playback.textContent = "Play"; - } - if (progress != 100) { + if (progress != 100 && label.toLowerCase() != "x") { progress = String(progress); progress = progress.split('.')[0]; this.playback.textContent = progress + '%';