mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -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);
|
||||
promise.then(projectAsset => {
|
||||
if (!projectAsset) {
|
||||
log.error("Failed to fetch project with id: ", id);
|
||||
log.error(`Failed to fetch project with id: ${id}`);
|
||||
return null;
|
||||
}
|
||||
return vm.loadProject(projectAsset.data);
|
||||
|
|
Loading…
Reference in a new issue