fetchOptions hooks not running

I'm seeing the following: - request specific onRequest/onResponse/onError/onSuccess run correctly - authClient onResponse (for all requests) runs correctly - authClient onRequest only runs if there is no request specific onRequest - authClient onSuccess never runs, no matter what, even when onResponse triggers for a 200 OK response I'm exporting a single authClient (no destructuring). Any of this expected? I did check both BetterAuth and BetterFetch docs and didn't find anything specfic to this. Added the bug tag because a tag is required, but it may not be a bug.
5 Replies
erquhart
erquhartOP•5d ago
Just using onResponse for now
erquhart
erquhartOP•4d ago
GitHub
fetchOptions onsuccess not be called when use bearer token plugin. ...
Is this suited for github? Yes, this is suited for github To Reproduce use bearer token plugin, add this code from doc: export const authClient = createAuthClient({ fetchOptions: { onSuccess: (ctx)...
Ping
Ping•4d ago
Hey @erquhart good to see you 👋 Yeah this is definitely unexpected. I think @bekacru would more likely understand the cause than me
bekacru
bekacru•4d ago
Yeah the global on success doesn’t execute cause it’s overwritten by internal callback. It’s a known issue, requires a little bit of work but will be fixed.
erquhart
erquhartOP•4d ago
Ah okay, thanks for the info

Did you find this page helpful?