Custom Session running twice on GET /api/auth/get-session
I'm trying out custom session to return some additonal team fields on the repsonse to use on the client side and i noticed(sinces its making a call to the db and i have the logger on) it's running the custom Session method twice for every single call to GET /api/auth/get-session is this to be expected or have i done something funky in my config
my custom session looks like the following:
on my logs you can see the request being called once but customsession is running twice?
Solution:Jump to solution
OK i had to do something funky i literaly had to copy over your customSessionClientPlugin
and make this change ```typescript
async (ctx) => {
const session = await getSessionFromCtx(ctx);...
8 Replies
can you send me your auth config?
yes got i here its
@bekacru
yeah I don't see any issue with your config. make sure you're only calling getSession once and it's not being triggered twice by the browser
outside of using const session = authClient.useSession();
oneced in my layout component what else trgigers the get session i only see it firing once in the network tab* ie im using the solid js import { createAuthClient } from "better-auth/solid";
ie
@bekacru
Solution
OK i had to do something funky i literaly had to copy over your customSessionClientPlugin
and make this change
Left everything else the same this is working now not sure where teh extra call was coiming from might be something on the hono end but its working regardless now...
@bekacru