summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2023-07-27 00:47:40 +0200
committerGitHub <noreply@github.com>2023-07-27 00:47:40 +0200
commit8fe85d9bacfe5ee4c3f3ed72d651151b5ebd8771 (patch)
tree69c63832da2dd2d4d11c3a612cc90ee776984585
parent7cded1f8bbbc85ea6ca57c515b9988130e85726f (diff)
parent96d4c1e9defe56eba3a5ebc372736b4869967dcf (diff)
Merge pull request #6484 from dos1/mosq
luci-app-mosquitto: fixes for notification options
-rw-r--r--applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua b/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua
index 66591f0bed..31d05e32f8 100644
--- a/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua
+++ b/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua
@@ -160,9 +160,9 @@ topics = s:option(DynamicList, "topic", _("topic"),
OptionalFlag(s, "cleansession", _("Clean session"))
OptionalFlag(s, "notifications", _("notifications"),
- _("Attempt to notify the local and remote broker of connection status, defaults to $SYS/broker/connections/<clientid>/state"))
+ _("Attempt to notify the local and remote broker of connection status, defaults to $SYS/broker/connections/&lt;clientid&gt;/state"))
s:option(Value, "notification_topic", _("Topic to use for local+remote remote for notifications.")).optional = true
-OptionalFlag(s, "notification_local_only", _("Notifications local only"), _("Bridge connection states should only be published locally"))
+OptionalFlag(s, "notifications_local_only", _("Notifications local only"), _("Bridge connection states should only be published locally"))
s:option(Value, "remote_clientid", _("Client id to use on remote end of this bridge connection")).optional = true
s:option(Value, "local_clientid", _("Client id to use locally. Important when bridging to yourself")).optional = true