diff options
-rwxr-xr-x | applications/luci-splash/root/usr/sbin/luci-splash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-splash/root/usr/sbin/luci-splash b/applications/luci-splash/root/usr/sbin/luci-splash index 244adc9d8..99fdd1bf1 100755 --- a/applications/luci-splash/root/usr/sbin/luci-splash +++ b/applications/luci-splash/root/usr/sbin/luci-splash @@ -16,8 +16,8 @@ function main(argv) local cmd = argv[1] local arg = argv[2] - limit_up = tonumber(uci:get("luci_splash", "general", "limit_up") or 0) - limit_down = tonumber(uci:get("luci_splash", "general", "limit_down") or 0) + limit_up = tonumber(uci:get("luci_splash", "general", "limit_up")) or 0 + limit_down = tonumber(uci:get("luci_splash", "general", "limit_down")) or 0 uci:foreach("luci_splash", "iface", function(s) if s.network then |