Plugins: Angular detection: Fix detection not being run for CDN plugins (#70960)

This commit is contained in:
Giuseppe Guerra
2023-07-04 11:03:10 +02:00
committed by GitHub
parent 3ab4d77008
commit 1d8628c0cd
2 changed files with 54 additions and 2 deletions

View File

@ -486,7 +486,7 @@ func (p *Plugin) IsBundledPlugin() bool {
}
func (p *Plugin) IsExternalPlugin() bool {
return p.Class == ClassExternal
return !p.IsCorePlugin() && !p.IsBundledPlugin()
}
type Class string