Stefano Saitta

Results 26 comments of Stefano Saitta
trafficstars

Where can we find a timeline for this this one?

This seems to be fixed on the IOS SDK. When the update?

I'm facing the same issue, here my workaround: *NOT working* ```dart hitsSearcher.applyState((state) => state.copyWith( page: page, hitsPerPage: pageSize, )); hitsSearcher.rerun(); //or hitsSearcher.applyState((state) => state.copyWith( query: state.query, page: page, hitsPerPage: pageSize,...

Ok it seems like that this is intended as per the documentation: https://www.algolia.com/doc/guides/managing-results/refine-results/filtering/in-depth/combining-boolean-operators/#mixed-filter-types-in-or-conditions Nonetheless it's quite an unexpected behaviour, I'd rather throw an error that point you to the documentation...

I'm using the docker containers, so in my docker compose I have this: ```yml stripe-cli-connected: image: stripe/stripe-cli:latest container_name: stripe-cli-connected command: > listen --device-name ${DEVICE_NAME}-connected --events=customer.created,customer.deleted,customer.updated,customer.subscription.created,customer.subscription.updated,customer.subscription.deleted,payment_method.attached,payment_method.detached,invoice.paid --forward-connect-to http://localshost:5001/connected/stripe-connected environment: - STRIPE_API_KEY...

If I can add to this issue, this was working for me before when using a key such as this one: `key: const Key('mykey')` But with the latest version of...