Skip to content

Commit c88f8ab

Browse files
committed
merging from upstream broke a couple of things :|
1 parent 1f14135 commit c88f8ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/engine/runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3300,7 +3300,7 @@ class Runtime extends EventEmitter {
33003300
* @param {!string} targetId Remove all monitors with given target ID.
33013301
*/
33023302
requestRemoveMonitorByTargetId (targetId) {
3303-
this._monitorState.forEach(monitor => {
3303+
this._monitorState.values().forEach(monitor => {
33043304
if (monitor.get('targetId') === targetId) {
33053305
this.emitMonitorsChanged(['delete', monitor.get('id'), {spriteName: monitor.get('spriteName')}]);
33063306
}

0 commit comments

Comments
 (0)