aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.ApiInteraction/ApiClient.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.ApiInteraction/ApiClient.cs b/MediaBrowser.ApiInteraction/ApiClient.cs
index 0315d9dd9..8e6859a48 100644
--- a/MediaBrowser.ApiInteraction/ApiClient.cs
+++ b/MediaBrowser.ApiInteraction/ApiClient.cs
@@ -353,7 +353,12 @@ namespace MediaBrowser.ApiInteraction
string url = ApiUrl + "/UserAuthentication?dataformat=" + SerializationFormat.ToString();
// 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");