fix: treat credential validation errors as auth errors (#822) (thanks @sebslight)

This commit is contained in:
Peter Steinberger
2026-01-13 04:02:47 +00:00
parent c4014c0092
commit 2c2ca7f03b
4 changed files with 25 additions and 5 deletions

View File

@@ -34,9 +34,9 @@ describe("telegram update offset store", () => {
updateId: 421,
});
expect(
await readTelegramUpdateOffset({ accountId: "primary" }),
).toBe(421);
expect(await readTelegramUpdateOffset({ accountId: "primary" })).toBe(
421,
);
});
});
});