don't remove existing trace data if trace jsons can't be loaded

This commit is contained in:
Matthias Wirth
2024-11-07 20:56:27 +01:00
parent 53fa8e5c0a
commit ac6d00dffd

View File

@@ -1021,6 +1021,10 @@ PlaneObject.prototype.processTrace = function() {
if (replay && !this.fullTrace)
return;
if (!showTrace && !this.fullTrace && !this.recentTrace) {
return;
}
if (!now)
now = new Date().getTime()/1000;