diff options
author | Solderpunk <solderpunk@sdf.org> | 2018-12-12 17:39:51 +0000 |
---|---|---|
committer | Solderpunk <solderpunk@sdf.org> | 2018-12-12 17:39:51 +0000 |
commit | 6ad630bda6b3bcfa34148f38c98d1b2ef1d41231 (patch) | |
tree | 3a3c28c689171be75d032886dc8db6cfae9bc6e8 /telem.lua | |
parent | Don't accept empty or non-existent files as posts. (diff) |
Sort boards in forward, not backward, alphabetical order.
Diffstat (limited to 'telem.lua')
-rwxr-xr-x | telem.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,7 @@ function update_boards() table.insert(boards, board) end end - table.sort(boards, function(x,y) return x.name > y.name end) + table.sort(boards, function(x,y) return x.name < y.name end) end function check_at_board() |