fix(lsp): get_namespace signature (#38449)

Problem: Since the change to `pull_id` in #37938 we used the
deprecated signature internally

Solution: Don't
This commit is contained in:
Tristan Knight
2026-03-23 22:42:47 +00:00
committed by GitHub
parent 3e93793bb1
commit 7c3df3e2ea
2 changed files with 7 additions and 7 deletions

View File

@@ -1364,7 +1364,7 @@ function M.code_action(opts)
if context.diagnostics then
params.context = context
else
local ns_push = lsp.diagnostic.get_namespace(client.id, false)
local ns_push = lsp.diagnostic.get_namespace(client.id)
local diagnostics = {}
local lnum = api.nvim_win_get_cursor(0)[1] - 1