2 Commits

Author SHA1 Message Date
raucao 91eff4ad07 Add missing unbind
CI / Test and lint (push) Successful in 24s
2025-05-21 16:34:12 +04:00
raucao 994053e080 Ignore test coverage results dir
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
View File
@@ -1,3 +1,4 @@
.env
users.yaml
build/
coverage/
+2
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;