Fix recording just made not being automatically played back

This commit is contained in:
David Rowe 2018-02-06 13:24:41 +13:00
parent e3f9cce6e6
commit 7f6471fcd1

View file

@ -139,7 +139,8 @@
}
function setMappingCallback(status) {
if (status !== "") {
// FIXME: "" is for RC < 63, null is for RC >= 63. Remove the former when RC63 is no longer used.
if (status !== "" && status !== null) {
error("Error mapping recording to " + mappingPath + " on Asset Server!", status);
return;
}