Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Sep 4, 2024
1 parent a85987f commit 64da50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/modules/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default (server: BaseServer): void => {
if (!token) return false

let session = await db.query.sessions.findFirst({
where: and(eq(sessions.token, token))
where: eq(sessions.token, token)
})
if (session) {
for (let client of server.connected.values()) {
Expand Down

0 comments on commit 64da50a

Please sign in to comment.