mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Fix recording just made not being automatically played back
This commit is contained in:
parent
e3f9cce6e6
commit
7f6471fcd1
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue