diff options
Diffstat (limited to 'applications/luci-app-ddns/htdocs/luci-static')
-rw-r--r-- | applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js index 8a8c27c718..d395f411a3 100644 --- a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js +++ b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js @@ -477,7 +477,9 @@ return view.extend({ return m.save(function() { uci.add('ddns', 'service', section_id); - uci.set('ddns', section_id, 'service_name', service_value); + if (service_value != '-') { + uci.set('ddns', section_id, 'service_name', service_value); + } uci.set('ddns', section_id, 'use_ipv6', ipv6_value); }).then(L.bind(m.children[1].renderMoreOptionsModal, m.children[1], section_id)); }; |