Marcus Williams

Results 95 comments of Marcus Williams

Not working for me either, causing major issues, any ideas on a fix

The reason this is an issue is it you have a list view that has different populated fields to the edit view it seems to break the population if you...

Does anyone have a work around for this issue. It's causing me some issues and I'd prefer not to have find an alternative.

Maybe caching should just be disable for always. As the docs state ``` always - Re-runs the original query to always get fresh data from the server on any matching...

Would it be as simple as adding say `cache: true` to the options then checking for that in list.js at this point. ``` if (cachedObservable) { return cachedObservable; } ```

Does anyone have a fix for this. I've tried forking the SwiftyCam used in this plugin to try the center fix mentioned above but that had no effect. https://github.com/dottodot/SwiftyCam I've...

I get the same error on 1.8.1 have I install the correct version ``` tns plugin add [email protected] ```

By the way this only happens when using aot `tns run ios --bundle --env.uglify --env.aot `

OK so aot is working now but I get error when using `Sentry.captureException(error)` that's regardless of aot or not ``` null is not an object (evaluating 'SentryClient.sharedClient.sendEventWithCompletionHandler') ```

OK I've found the cause of the issue. It was because I'd add my own custom error handler not realising you'd already done that. So for some reason doing that...