2 Commits

Author SHA1 Message Date
91eff4ad07 Add missing unbind
All checks were successful
CI / Test and lint (push) Successful in 24s
2025-05-21 16:34:12 +04:00
994053e080 Ignore test coverage results dir
All checks were successful
CI / Test and lint (push) Successful in 16s
2025-05-02 13:22:41 +04:00
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.env
users.yaml
build/
coverage/

View File

@@ -49,6 +49,8 @@ export async function lookupUsernameByPubkey(pubkey: string): Promise<string | u
if (searchEntries.length > 0) {
username = searchEntries[0].cn.toString();
}
await client.unbind();
} catch (e) {
await client.unbind();
throw e;