1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-21 11:53:38 +00:00

debug paged = false

This commit is contained in:
Kyle Spearrin
2020-05-19 10:27:40 -04:00
parent 71cd11eedf
commit d94e5b0620

View File

@@ -293,7 +293,7 @@ export class LdapDirectoryService implements DirectoryService {
const options: ldap.SearchOptions = {
filter: filter,
scope: 'sub',
paged: true,
paged: false,
};
const entries: T[] = [];
return new Promise<T[]>((resolve, reject) => {