mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #2584 from sammachin/sammachin-settings_set_fix
fix for settings.set subsequent updates
This commit is contained in:
		@@ -87,7 +87,7 @@ var persistentSettings = {
 | 
			
		||||
            throw new Error(log._("settings.not-available"));
 | 
			
		||||
        }
 | 
			
		||||
        var current = globalSettings[prop];
 | 
			
		||||
        globalSettings[prop] = value;
 | 
			
		||||
        globalSettings[prop] = clone(value);
 | 
			
		||||
        try {
 | 
			
		||||
            assert.deepEqual(current,value);
 | 
			
		||||
            return when.resolve();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user