# HG changeset patch # User Nicholas Jillings # Date 1460991159 -3600 # Node ID 1e1b689e2a600bcdcc1a8640fb42d98e55313aed # Parent 0de30572612943ed212157386db775966d5e95c2 WAVE.js fallback was not correctly continuing from audioContext.decode function call. diff -r 0de305726129 -r 1e1b689e2a60 js/core.js --- a/js/core.js Mon Apr 18 13:47:35 2016 +0100 +++ b/js/core.js Mon Apr 18 15:52:39 2016 +0100 @@ -1174,6 +1174,8 @@ } else { audioContext.decodeAudioData(bufferObj.xmlRequest.response, function(decodedData) { bufferObj.buffer = decodedData; + bufferObj.status = 2; + calculateLoudness(bufferObj,"I"); }, function(e){ // Should only be called if there was an error, but sometimes gets called continuously // Check here if the error is genuine