mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Fix global leak in lib/flows/index.js
This commit is contained in:
		| @@ -424,7 +424,7 @@ function stop(type,diff,muteLog) { | ||||
|     }); | ||||
|  | ||||
|     return Promise.all(promises).then(function() { | ||||
|         for (id in activeNodesToFlow) { | ||||
|         for (let id in activeNodesToFlow) { | ||||
|             if (activeNodesToFlow.hasOwnProperty(id)) { | ||||
|                 if (!activeFlows[activeNodesToFlow[id]]) { | ||||
|                     delete activeNodesToFlow[id]; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user