Skip to content

Commit

Permalink
feat: don't ignore metadata that doesn't have unmanaged
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeAbella authored and xixiaofinland committed Nov 16, 2024
1 parent d47fc7f commit 882efdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/sf/md.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ H.list_md_to_retrieve = function()

if md_tbl ~= nil then
for _, v in ipairs(md_tbl) do
if v["manageableState"] == "unmanaged" then
if v["manageableState"] ~= "installed" then
local md_key = v["type"] .. ": " .. v["fullName"]
md[md_key] = v
table.insert(md_names, md_key)
Expand Down

0 comments on commit 882efdd

Please sign in to comment.