diff options
-rwxr-xr-x | telem.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ end function update_boards() for board in lfs.dir(path.join(_BBS_ROOT, "boards")) do - if string.sub(board, 1, 1) ~= "." then + if string.sub(board, 1, 1) ~= "." and not boards[board] then boards[board] = true table.insert(board_names, board) end |