Fix more typos

This commit is contained in:
osmarks 2018-07-26 16:27:53 +01:00
parent 93625e3147
commit d1207f728e

View File

@ -115,11 +115,11 @@ local function server(command)
if command.type == "buffers" then -- Sends the external address of the buffer if command.type == "buffers" then -- Sends the external address of the buffer
return conf.buffer_external return conf.buffer_external
elseif command.type == "reindex" then elseif command.type == "reindex" then
updateIndex() update_index()
elseif command.type == "extract" then elseif command.type == "extract" then
local result = find_by_ID_meta(command.ID, command.meta) local result = find_by_ID_meta(command.ID, command.meta)
end end
end end
update_index() update_index()
serve(server, "storage") w.serve(server, "storage")