Skip to content

Commit

Permalink
fix: fetch fflags error
Browse files Browse the repository at this point in the history
  • Loading branch information
lopi-py authored Sep 20, 2024
1 parent f4eb41f commit 6fb7bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/luau-lsp/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ local fetch_fflags = async.wrap(function(callback)
end
end,
on_error = function(result)
on_error(table.concat(result.stderr, "\n"))
on_error(result.stderr)
end,
})
end, 1)
Expand Down

0 comments on commit 6fb7bf3

Please sign in to comment.