diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-10-23 13:20:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 13:20:45 +0200 |
commit | 290610798a4d6ced5d0db31e1cbcad7d758e020f (patch) | |
tree | eb19c8df96350642e9c57a487688a4b96a2a5daf | |
parent | c74d9c011a4098b0fd909e0769e0977bee4df45b (diff) | |
parent | 19e9d84602cfad4ab317d144dc3aaa599c965371 (diff) |
Merge pull request #2238 from mmouselli/fixed_ui_olsr_service_menu
luci-app-olsr-services: Don't use the nameservice with a specific ver…
-rw-r--r-- | applications/luci-app-olsr-services/luasrc/controller/services.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-olsr-services/luasrc/controller/services.lua b/applications/luci-app-olsr-services/luasrc/controller/services.lua index a4636bfd5..7a543d353 100644 --- a/applications/luci-app-olsr-services/luasrc/controller/services.lua +++ b/applications/luci-app-olsr-services/luasrc/controller/services.lua @@ -4,7 +4,7 @@ function index() local uci = require "luci.model.uci".cursor() uci:foreach("olsrd", "LoadPlugin", function(s) - if s.library == "olsrd_nameservice.so.0.3" then + if s.library == "olsrd_nameservice" then has_serv = true end end) |