diff options
author | yangfl <yangfl@users.noreply.github.com> | 2018-08-18 12:21:21 +0800 |
---|---|---|
committer | yangfl <yangfl@users.noreply.github.com> | 2018-10-12 23:28:18 +0800 |
commit | 40feafe556c44fb69abba41f2c25e444702c904d (patch) | |
tree | b87c037ec381e3c64673f51122c62ebe4bdfc3ee | |
parent | 1544e10f918a168e8e7860da5e22fb5f294479e5 (diff) |
luci-app-dump1090: Fix typo of a dumb option
Option `aggressive` is supported by dump1090 binary, but oddly missing in
dump1090.init. Nevertheless, neither of them support the wrong
`agressive`.
Signed-off-by: David Yang <mmyangfl@gmail.com>
-rw-r--r-- | applications/luci-app-dump1090/luasrc/model/cbi/dump1090.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-dump1090/luasrc/model/cbi/dump1090.lua b/applications/luci-app-dump1090/luasrc/model/cbi/dump1090.lua index 4470a0d2f..51b2d20a4 100644 --- a/applications/luci-app-dump1090/luasrc/model/cbi/dump1090.lua +++ b/applications/luci-app-dump1090/luasrc/model/cbi/dump1090.lua @@ -136,8 +136,8 @@ no_crc_check.default = false phase_enhance=s:option(Flag, "phase_enhance", translate("Enable phase enhancement")) phase_enhance.default = false -agressive=s:option(Flag, "agressive", translate("More CPU for more messages")) -agressive.default = false +aggressive=s:option(Flag, "aggressive", translate("More CPU for more messages")) +aggressive.default = false mlat=s:option(Flag, "mlat", translate("Display raw messages in Beast ascii mode")) mlat.default = false |