Kabo
Kabo
> The only way to work around this is to pre-parse all of the image src properties and replace images with malformed URIs Sounds like a nice solution to work...
> Even in prod, some users are reporting that they are not able to access the Premium features, which means that this callback is not getting triggered on initialization. It...
My current workaround is to avoid relying solely on the listener and manually use `Purchases.getCustomerInfo()` together. ```dart var wasListenerCalled = false; Purchases.addCustomerInfoUpdateListener((info) { wasListenerCalled = true; _someHandler(customerInfo: info); }); if...