mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge branch 'dev' of github.com:node-red/node-red into dev
This commit is contained in:
		| @@ -278,7 +278,7 @@ | ||||
|             }}, | ||||
|             usetls: {value: false}, | ||||
|             verifyservercert: { value: false}, | ||||
|             compatmode: { value: true}, | ||||
|             compatmode: { value: false}, | ||||
|             keepalive: {value:60,validate:RED.validators.number()}, | ||||
|             cleansession: {value: true}, | ||||
|             birthTopic: {value:""}, | ||||
| @@ -371,8 +371,8 @@ | ||||
|                 $("#node-config-input-usetls").prop("checked",false); | ||||
|             } | ||||
|             if (typeof this.compatmode === 'undefined') { | ||||
|                 this.compatmode = true; | ||||
|                 $("#node-config-input-compatmode").prop('checked', true); | ||||
|                 this.compatmode = false; | ||||
|                 $("#node-config-input-compatmode").prop('checked', false); | ||||
|             } | ||||
|             if (typeof this.keepalive === 'undefined') { | ||||
|                 this.keepalive = 15; | ||||
|   | ||||
| @@ -98,7 +98,7 @@ module.exports = function(RED) { | ||||
|             this.usews = false; | ||||
|         } | ||||
|         if (typeof this.compatmode === 'undefined') { | ||||
|             this.compatmode = true; | ||||
|             this.compatmode = false; | ||||
|         } | ||||
|         if (typeof this.verifyservercert === 'undefined') { | ||||
|             this.verifyservercert = false; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user