Skip to content

Commit

Permalink
Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Aug 9, 2024
1 parent 92f572b commit 781c792
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion denops/@dpp-exts/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,9 @@ async function getPlugins(
denops,
"dpp#_plugins",
),
) as Plugin[]).filter((plugin) => !plugin.local && !plugin?.extAttrs?.installerFrozen);
) as Plugin[]).filter((plugin) =>
!plugin.local && !(plugin.extAttrs as Attrs)?.installerFrozen
);

if (names.length > 0) {
plugins = plugins.filter((plugin) => names.indexOf(plugin.name) >= 0);
Expand Down

0 comments on commit 781c792

Please sign in to comment.