JetBrains / YouTrackSharp

.NET Standard 2.0 Library to access YouTrack API.
https://www.jetbrains.com/youtrack
Apache License 2.0
134 stars 105 forks source link

UserManagementService .CreateUser replaces '@' with '%40' #91

Closed CyrilCoq closed 4 years ago

CyrilCoq commented 4 years ago

Expected behavior

The email address should be valid and as entered with the @ sign

Actual behavior

The email address has the @ sign replaced by %40

Steps to reproduce the behavior

Create new user with an email address and it will "Encode" it. Same as issue #90 I believe we need to leave the string as is, no encoding since it will be be re-encoded in the body somehow.

maartenba commented 4 years ago

Thanks, just pushed a fresh one. Password is still being encoded for now

CyrilCoq commented 4 years ago

Thank you for your reactivity !