aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-20 11:48:23 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-20 11:48:23 -0400
commitf6769b73f2a82273e67689e8bc1c9d7b005ee866 (patch)
treea8a947f475e47632e61d0b91f421faa245f7198a /MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
parentab207209b8138dccfea82d0fcd39866ff7e2fe9c (diff)
add MediaInfo to improve media analysis for video files
Diffstat (limited to 'MediaBrowser.Server.Implementations/Connect/ConnectManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Connect/ConnectManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs b/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
index 6479b6f9d..374d04f1d 100644
--- a/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
+++ b/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
@@ -402,11 +402,11 @@ namespace MediaBrowser.Server.Implementations.Connect
}
else if (!string.IsNullOrWhiteSpace(query.Name))
{
- url = url + "?name=" + WebUtility.UrlEncode(query.Name);
+ url = url + "?nameoremail=" + WebUtility.UrlEncode(query.Name);
}
else if (!string.IsNullOrWhiteSpace(query.Email))
{
- url = url + "?email=" + WebUtility.UrlEncode(query.Email);
+ url = url + "?nameoremail=" + WebUtility.UrlEncode(query.Email);
}
var options = new HttpRequestOptions