Skip to content

Commit

Permalink
fix(debug): only concat debug info that is a string
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Dec 16, 2022
1 parent e013b6e commit 78ec5c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/noice/text/format/formatters.lua
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function M.debug(message, opts)
vim.tbl_filter(
---@param t string
function(t)
return t ~= nil
return type(t) == "string"
end,
debug
),
Expand Down

0 comments on commit 78ec5c6

Please sign in to comment.