Guilherme Souza
Guilherme Souza
The key is `Failed to store session: Unspecified Keychain error: -34018.` That error is `errSecMissingEntitlement`, it means there is something wrong with the added entitlement, can you check this https://developer.apple.com/documentation/security/errsecmissingentitlement...
It seems it started after this https://github.com/supabase/supabase-swift/pull/455
Doing a few tests and if you add the keychain sharing capability to your app, even if you don't assign any access group, it works, will try to find on...
@rebryk if you add an access group, then you need to provide a custom `KeychainLocalStorage` implementation with the access group.
You can use the following code, once I merge this https://github.com/supabase/supabase-swift/pull/519 `KeychainLocalStorage` is the default implementation used internally, and it is exposed so you can customize it. ```swift let supabase...
This issue has been closed as it has been inactive for some time. If you are still experiencing an issue, please feel free to reopen it.
This issue has been closed as it has been inactive for some time. If you are still experiencing an issue, please feel free to reopen it.
The downside of your suggested approach is that when we call `subscribe()`, the `rejoin` logic runs in the background. So, anytime a socket sends an error or closes, it will...