Only add password to the form post if not null or empty
This commit is contained in:
parent
8fc828361e
commit
90c609c159
|
@ -353,7 +353,12 @@ namespace MediaBrowser.ApiInteraction
|
||||||
string url = ApiUrl + "/UserAuthentication?dataformat=" + SerializationFormat.ToString();
|
string url = ApiUrl + "/UserAuthentication?dataformat=" + SerializationFormat.ToString();
|
||||||
|
|
||||||
// Create the post body
|
// Create the post body
|
||||||
string postContent = string.Format("userid={0}&password={1}", userId, password);
|
string postContent = string.Format("userid={0}", userId);
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(password))
|
||||||
|
{
|
||||||
|
postContent += "&password=" + password;
|
||||||
|
}
|
||||||
|
|
||||||
HttpContent content = new StringContent(postContent, Encoding.UTF8, "application/x-www-form-urlencoded");
|
HttpContent content = new StringContent(postContent, Encoding.UTF8, "application/x-www-form-urlencoded");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user