You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The library incorrectly encodes the objectID and other paramters for the url.
To Reproduce
final index =Algolia(...).index('my-index');
final objectRef = index.object('some/object'); // <-- the slash will cause issues on the next line but it should be just fine for algoliafinal task = objectRef.setData(/* ... */);
Expected behavior
a call to the url
PUT https://${appid}.algolia.net/1/indexes/my-index/some%2Fobject
but it will actually call
PUT https://${appid}.algolia.net/1/indexes/my-index/some/object
Explained here on the objectID, but the same can be said for the other places.
Additional context
Created a pull request to fix this, please merge :) #133
The text was updated successfully, but these errors were encountered:
Dart version: 3.4.3
Flutter version: 3.22.2
Describe the bug
The library incorrectly encodes the objectID and other paramters for the url.
To Reproduce
Expected behavior
a call to the url
but it will actually call
Explained here on the objectID, but the same can be said for the other places.
Additional context
Created a pull request to fix this, please merge :)
#133
The text was updated successfully, but these errors were encountered: