mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Fix lint error
Co-authored-by: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com>
This commit is contained in:
parent
4679d06ac0
commit
36849c9f40
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ class VirtualMachine extends EventEmitter {
|
||||||
const promise = storage.load(storage.AssetType.Project, id);
|
const promise = storage.load(storage.AssetType.Project, id);
|
||||||
promise.then(projectAsset => {
|
promise.then(projectAsset => {
|
||||||
if (!projectAsset) {
|
if (!projectAsset) {
|
||||||
log.error("Failed to fetch project with id: ", id);
|
log.error(`Failed to fetch project with id: ${id}`);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return vm.loadProject(projectAsset.data);
|
return vm.loadProject(projectAsset.data);
|
||||||
|
|
Loading…
Reference in a new issue