Ivan Isaev
Ivan Isaev
It seems there's bug with saving "original application version", as a workaround add check if app version was returned correctly, fix MKStoreKit.m line 331 to: ``` NSString *originalAppVersion = jsonResponse[@"receipt"][@"original_application_version"];...
oh, as far as I remember __serialized__ extra weren't applied to payload in case of non Error object passed to captureException or something like that
I think something like this would reproduce the issue: ``` sentry.setExtra("source_error", error); // where isError(error)==false, e.g. object sentry.captureException(new Error(message)); // where message is a string ``` without my dirty fix...