luci-app-firewall: fix zone overview page after rpc procedure renaming
authorJo-Philipp Wich <jo@mein.io>
Thu, 15 Aug 2019 13:40:46 +0000 (15:40 +0200)
committerJo-Philipp Wich <jo@mein.io>
Thu, 15 Aug 2019 13:40:46 +0000 (15:40 +0200)
The "conntrack_helpers" method has been renamed to "getConntrackHelpers".

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js

index 3ac3f6e2fbb984d08f3f1f8c0f1ec2ad0d84bd52..62b792da1f860ac44d091648f38242cea423434e 100644 (file)
@@ -9,8 +9,8 @@
 return L.view.extend({
        callConntrackHelpers: rpc.declare({
                object: 'luci',
-               method: 'conntrack_helpers',
-               expect: { helpers: [] }
+               method: 'getConntrackHelpers',
+               expect: { result: [] }
        }),
 
        load: function() {