We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc406ea commit f637fb4Copy full SHA for f637fb4
Sources/Supabase/SupabaseClient.swift
@@ -407,6 +407,15 @@ public final class SupabaseClient: Sendable {
407
guard let self else { return "" }
408
return try await self.auth.session.accessToken
409
}
410
+ } else {
411
+ reportIssue(
412
+ """
413
+ You assigned a custom `accessToken` closure to the RealtimeClientV2. This might not work as you expect
414
+ as SupabaseClient uses Auth for pulling an access token to send on the realtime channels.
415
+
416
+ Please make sure you know what you're doing.
417
418
+ )
419
420
421
return RealtimeClientV2(
0 commit comments