mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Merge branch 'dev' into update-deps
This commit is contained in:
@@ -35,7 +35,11 @@ module.exports = function(RED) {
|
||||
}
|
||||
else { node.previous = {}; }
|
||||
}
|
||||
var value = RED.util.getMessageProperty(msg,node.property);
|
||||
var value;
|
||||
try {
|
||||
value = RED.util.getMessageProperty(msg,node.property);
|
||||
}
|
||||
catch(e) { }
|
||||
if (value !== undefined) {
|
||||
var t = "_no_topic";
|
||||
if (node.septopics) { t = topic || t; }
|
||||
|
@@ -414,6 +414,7 @@
|
||||
"port": "ポート",
|
||||
"keepalive": "キープアライブ時間",
|
||||
"cleansession": "セッションの初期化",
|
||||
"autoUnsubscribe": "切断時に購読を自動解除",
|
||||
"cleanstart": "クリーンスタート",
|
||||
"use-tls": "TLSを使用",
|
||||
"tls-config": "TLS設定",
|
||||
|
Reference in New Issue
Block a user