Skip to content

Commit

Permalink
Hide UE plugins from the user's library
Browse files Browse the repository at this point in the history
  • Loading branch information
CommandMC committed Nov 22, 2024
1 parent 3fa5605 commit d9ba9bf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/backend/storeManagers/legendary/library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,14 @@ function loadFile(app_name: string): boolean {
}
const { namespace } = metadata

if (namespace === 'ue') {
const ueCategories = ['assets', 'asset-format', 'plugins', 'projects']
const isUeTitle =
namespace === 'ue' ||
!!metadata.categories.find((category) =>
ueCategories.includes(category.path)
)

if (isUeTitle) {
return false
}

Expand Down

0 comments on commit d9ba9bf

Please sign in to comment.