Skip to content

Commit

Permalink
Update plugin-manager.ts
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored Aug 26, 2024
1 parent 07e44b8 commit fcd0aa1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion base/src/plugin-manager/plugin-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ export class PluginManager {
return true;
} else {
const webContent = plugin.getWebContent();
if (webContent.framework != 'angular') {
if (!webContent) {
return true;
} else if ((webContent.framework != 'angular') && (webContent.framework != 'angular2')) {
return true;
} else {
//exclude apps incompatible with the given desktop environment, depending upon their entryPoint content.
Expand Down

0 comments on commit fcd0aa1

Please sign in to comment.