Steffen

Results 26 comments of Steffen

Thx for the PR! The issue that I see is that this PR will swallow potential write errors :-o and simply console log them. IMHO errors should be thrown/returned so...

This is working in v3 now. I think this can be closed @auser

It looks like most of the work has already been done here! https://github.com/evollu/react-native-fcm Maybe there is a possibility to merge the libraries?

I have opened an issue here https://github.com/evollu/react-native-fcm/issues/177. Feel free to comment and add your thoughts.

I think this has been merged already.

I have the same problem in v3. Basically I am doing this: ``` const firestack = new Firestack(); firestack.database().setPersistence(true); ``` I guess the problem could be this code in the...

Here is a PR that fixes the issue. https://github.com/fullstackreact/react-native-firestack/pull/232 `setPersistence` has to be called before any database references have been created. Since the database constructor immediately creates refs to `.info/serverTimeOffset`,...

@Salakar how do you enable persistence in your code? Can you post a snippet? I have seen this issue with all v3 branches including yours :-/ I am using `Using...

@SamMatthewsIsACommonName Database persistence works now on iOS using the latest v3 version and enabling the persistence option like this `const firestack = new Firestack({ persistence: true });`. This will persist...

@esdrasportillo Sorry, I thought that PR https://github.com/fullstackreact/react-native-firestack/pull/232 had been merged, but apparently it has just be closed... Looks like it won't be part of v3 then @auser?