aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/Security/PluginSecurityManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-09-22 13:09:37 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-09-22 13:09:37 -0400
commitd469e3623e374f64f1a215394d05387bcde97c1f (patch)
tree429b4f3297e84288633f9341e61f094f2b3a9d07 /MediaBrowser.Common.Implementations/Security/PluginSecurityManager.cs
parent7ee9bfe867006cf738d2da3d0daab7058dd6b413 (diff)
parent253cfcd64bf7454517b130994f9072e483c0c8c1 (diff)
Merge branch 'dev' of https://github.com/MediaBrowser/Emby into dev
Diffstat (limited to 'MediaBrowser.Common.Implementations/Security/PluginSecurityManager.cs')
-rw-r--r--MediaBrowser.Common.Implementations/Security/PluginSecurityManager.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/MediaBrowser.Common.Implementations/Security/PluginSecurityManager.cs b/MediaBrowser.Common.Implementations/Security/PluginSecurityManager.cs
index 39dd41356..ec3613298 100644
--- a/MediaBrowser.Common.Implementations/Security/PluginSecurityManager.cs
+++ b/MediaBrowser.Common.Implementations/Security/PluginSecurityManager.cs
@@ -158,9 +158,14 @@ namespace MediaBrowser.Common.Implementations.Security
return new SupporterInfo();
}
- var url = MbAdmin.HttpsUrl + "/service/supporter/retrieve?key=" + key;
+ var data = new Dictionary<string, string>
+ {
+ { "key", key },
+ };
+
+ var url = MbAdmin.HttpsUrl + "/service/supporter/retrieve";
- using (var stream = await _httpClient.Get(url, CancellationToken.None).ConfigureAwait(false))
+ using (var stream = await _httpClient.Post(url, data, CancellationToken.None).ConfigureAwait(false))
{
var response = _jsonSerializer.DeserializeFromStream<SuppporterInfoResponse>(stream);