Skip to content

Commit

Permalink
Fix lighthouse v2 regression
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Sep 6, 2024
1 parent f690398 commit 79a0321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-ui/app/services/lighthouse.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,6 @@ export class LighthouseService {
}

public deviceNeedsIdentifier(device: LighthouseDevice) {
return !this.v1Identifiers.hasOwnProperty(device.id);
return device.deviceType === 'lighthouseV1' && !this.v1Identifiers[device.id];
}
}

0 comments on commit 79a0321

Please sign in to comment.