Fix weird misclassification when opening report window

This commit is contained in:
Kuba Orlik 2021-11-24 01:03:32 +01:00
parent 974e7d6ae6
commit 792b1f88d8
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ export class StolenDataEntry extends EventEmitter {
isRelatedToID() {
return this.request.stolenData.some(
(entry) => (entry.classification = "id")
(entry) => entry.classification == "id"
);
}