mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-01 17:11:21 -04:00
Revert "fix: disable metadata for now"
This commit is contained in:
parent
b159edb317
commit
bd51da51eb
2 changed files with 5 additions and 7 deletions
src/engine
|
@ -1,6 +1,6 @@
|
|||
const EventEmitter = require('events');
|
||||
const {OrderedMap} = require('immutable');
|
||||
// const uuid = require('uuid');
|
||||
const uuid = require('uuid');
|
||||
|
||||
const ArgumentType = require('../extension-support/argument-type');
|
||||
const Blocks = require('./blocks');
|
||||
|
@ -2032,9 +2032,8 @@ class Runtime extends EventEmitter {
|
|||
return;
|
||||
}
|
||||
|
||||
// TODO: re-enable metadata
|
||||
// const newRunId = uuid.v1();
|
||||
// this.storage.scratchFetch.setMetadata(this.storage.scratchFetch.RequestMetadata.RunId, newRunId);
|
||||
const newRunId = uuid.v1();
|
||||
this.storage.scratchFetch.setMetadata(this.storage.scratchFetch.RequestMetadata.RunId, newRunId);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue