Skip to content

Commit

Permalink
fix(session: mysql): query bug when querying session data
Browse files Browse the repository at this point in the history
  • Loading branch information
ephrimlawrence committed Feb 29, 2024
1 parent 6651af7 commit a308606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sessions/mysql.session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,6 @@ export class MySQLSession extends BaseSession {
return undefined;
}

return JSON.parse(val) as T;
return val as T;
}
}

0 comments on commit a308606

Please sign in to comment.