Description
Bug report
- I confirm this is a bug with Supabase, not with my own application.
- I confirm I have searched the Docs, GitHub Discussions, and Discord.
Describe the bug
Supabase Realtime React Native silently fails when loading session from storage and using RLS that relies on supabase JWT claims.
Subscribing to postgres changes reports ok be receives no updates if the session is loaded from storage. Logging out and back in resolves the issue.
SUBSCRIBED and CLOSED events occur as expected. Logging realtime events at info
show the same events in either case with the exception of the expected.
Disabling RLS immediately fixes the issue and reenabling immediately re-triggers it.
RLS policy is checking a property on the JWT so this appears to be the issue.
Setting the Realtime auth token manually via
supabase.auth.onAuthStateChange((event, session) => {
if(session) {
supabase.realtime.setAuth(session?.access_token);
}
});
resolves the issue.
Expected behavior
Sessions loaded from storage or newly logged in should be able to use properties of the supabase jwt without manually setting.
Additional context
This is a regression as at some point previously this workaround was not required with the same RLS polices
Auth options are
{
autoRefreshToken: true,
persistSession: true,
storage: AsyncStorage,
}
Versions:
"@react-native-async-storage/async-storage": "1.22.3",
"@supabase/supabase-js": "2.39.8",