diff options
author | Ameer Dawood <ameer1234567890@gmail.com> | 2018-07-24 19:06:38 +0500 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-09-29 15:01:57 +0200 |
commit | 15fc6bf48d0e856d3390ba929bee0165fa81d673 (patch) | |
tree | da8feac4ac775f9b55dd0f9c770ad60ed5b75241 | |
parent | b3642f476267e60aa1fcd7b0c3fac9512f3754ad (diff) |
luci-app-nlbwmon: the default CSV delimiter should be a comma
Suggested-by: Ameer Dawood <ameer1234567890@gmail.com>
[slightly reword commit subject]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r-- | applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua b/applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua index 72e87e8f9..d50b77d0f 100644 --- a/applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua +++ b/applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua @@ -61,7 +61,7 @@ function action_data() local args = { } local mtype = http.formvalue("type") or "json" - local delim = http.formvalue("delim") or ";" + local delim = http.formvalue("delim") or "," local period = http.formvalue("period") local group_by = http.formvalue("group_by") local order_by = http.formvalue("order_by") |