Skip to content

Commit

Permalink
fixing coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderUngefug committed Dec 15, 2024
1 parent 685470d commit 897f21b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/core/ldap/domain/ldap-client.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -666,10 +666,7 @@ export class LdapClientService {
if (typeof entry === 'string') {
return entry === lehrerUid;
}
if (Buffer.isBuffer(entry)) {
return entry.toString() === lehrerUid;
}
return false;
return entry.toString() === lehrerUid;
});
}

Expand Down

0 comments on commit 897f21b

Please sign in to comment.