I am using a Roslyn LSP, and during its bootup I get an error message.
Error detected while processing LspProgress Autocommands for "*":
Error executing callback: /astroplsp/lua/astrolsp/init.lua:57
I have updated line 57 to contain the following.
if M.lsp_progress[id] == nil or M.lsp_progress[id].kind == "end" then
This assures that if no id is present, the progress will conclude.
I am not sure if this is good practice, but it did resolve an issue that I had, so I wanted to provide the feedback.
I am using a Roslyn LSP, and during its bootup I get an error message.
Error detected while processing LspProgress Autocommands for "*":
Error executing callback: /astroplsp/lua/astrolsp/init.lua:57
I have updated line 57 to contain the following.
if M.lsp_progress[id] == nil or M.lsp_progress[id].kind == "end" then
This assures that if no id is present, the progress will conclude.
I am not sure if this is good practice, but it did resolve an issue that I had, so I wanted to provide the feedback.