Don't freeze the UI with old (invalid) states of the drive history

This commit is contained in:
yflory
2019-08-12 16:14:44 +02:00
parent 21658e9de1
commit bbd59c6a2b
3 changed files with 22 additions and 0 deletions

View File

@@ -3900,6 +3900,10 @@ define([
return;
}
history.sfId = false;
var ok = manager.isValidDrive(obj.drive);
if (!ok) { return; }
copyObjectValue(files, obj.drive);
appStatus.isReady = true;
refresh();