mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-13 23:10:56 -04:00
fix: disable metadata for now
This commit is contained in:
parent
19450906e6
commit
95912963ce
2 changed files with 7 additions and 5 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,8 +2032,9 @@ class Runtime extends EventEmitter {
|
|||
return;
|
||||
}
|
||||
|
||||
const newRunId = uuid.v1();
|
||||
this.storage.scratchFetch.setMetadata(this.storage.scratchFetch.RequestMetadata.RunId, newRunId);
|
||||
// TODO: re-enable metadata
|
||||
// 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