-
Notifications
You must be signed in to change notification settings - Fork 31
Fix error when create database and query #53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This will happend if passing database name to the flurl with special char for example with /, . , + etc. Will raise exception when requesting. So we add Uri.EscapeDataString(database) when request using flurl with AppendPathSegment(Uri.EscapeDataString(database))
Hi, thanks for the PR, Once you escape the parameter in those method, the escaped string will be passed town to the rest of the app. |
Yeah, I try to escape to the root, but some part will raise error some method will call other method that already escaped.I hope you have better solution for this :D. I just try to fix with the problems. Thanks for your great couch client. |
I will give a look this evening. |
You are welcome 🥇 |
Hi, |
Hi thanks for checking, I will check then on my code 👍 |
Hi, |
Hi, |
@zendbit I will create a PR in minutes |
This will happend if passing database name to the flurl with special char for example with /, . , + etc. Will raise exception when requesting.
So we add Uri.EscapeDataString(database) when request using flurl with AppendPathSegment(Uri.EscapeDataString(database))