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
Changing that line for the following should fix the issue:
varurlEnd=url.indexOf("?");if(urlEnd==-1){urlEnd=url.length;}// Don't bother doing anything if the URL is emptyif(urlEnd>0){if(url[urlEnd-1]=="/"){url=url.substr(0,urlEnd-1)+url.substr(urlEnd);}}
The text was updated successfully, but these errors were encountered:
When using stripTrailingSlash = true and then calling client.create({ data }, { QUERY }) then the initial setting is ignored.
Line 354 of v1.0.2 could be refactored to something else. Useful link:
http://stackoverflow.com/questions/4740364/jquery-check-and-remove-slash-from-the-end-of-url-read
Changing that line for the following should fix the issue:
The text was updated successfully, but these errors were encountered: