From c1bf5f1e85d9e6c04575ab2462e68d3690409050 Mon Sep 17 00:00:00 2001 From: Pawel Idczak Date: Sun, 31 Dec 2023 12:20:38 +0100 Subject: [PATCH] fix: correct typo --- src/bir.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bir.ts b/src/bir.ts index a0619d2..b4eb13d 100644 --- a/src/bir.ts +++ b/src/bir.ts @@ -58,7 +58,7 @@ export default class Bir { const body = await template('Zaloguj', { key: this.key }) const response = await this.api({ body }) const sid = soapResult(response.body) - assert(sid, new Error('login failed, no session foun in response')) + assert(sid, new Error('login failed, no session found in response')) this.sid = sid }