Skip to content

Commit 355312e

Browse files
committed
fix(plugin): properly pass is_list for recursively merging props
1 parent e89aced commit 355312e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/core/plugin.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ end
434434
---@param is_list? boolean
435435
function M.values(plugin, prop, is_list)
436436
---@type table
437-
local ret = plugin._.super and M.values(plugin._.super, prop) or {}
437+
local ret = plugin._.super and M.values(plugin._.super, prop, is_list) or {}
438438
local values = rawget(plugin, prop)
439439

440440
if not values then

0 commit comments

Comments
 (0)