Skip to content

Commit

Permalink
Update Platform.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dubocr committed May 11, 2023
1 parent 93fa98f commit 1a1511e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class Platform implements DynamicPlatformPlugin {
const actionGroups = await this.client.getActionGroups();

for (const actionGroup of actionGroups) {
if (this.exclude.includes(actionGroup.label) || actionGroup.label.startsWith('internal:')) {
if (this.exclude.includes(actionGroup.label) || actionGroup.label.startsWith('internal:') || actionGroup.label === '') {
continue;
}

Expand Down

0 comments on commit 1a1511e

Please sign in to comment.