aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-02 16:54:37 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-02 16:54:37 -0500
commit821e8246872cfa380249bca2f79ea810f27c87d5 (patch)
treec1ba1b2c3f24e8a8f92573828fbaa08d1ada3c97 /MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
parent4bf13f7754f9797eb5adc15ece0fcb2fd94cdb04 (diff)
better caching of remote data
Diffstat (limited to 'MediaBrowser.Server.Implementations/Connect/ConnectManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Connect/ConnectManager.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs b/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
index f1de09d56..fdc7e9ee2 100644
--- a/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
+++ b/MediaBrowser.Server.Implementations/Connect/ConnectManager.cs
@@ -1073,11 +1073,6 @@ namespace MediaBrowser.Server.Implementations.Connect
public async Task<ConnectSupporterSummary> GetConnectSupporterSummary()
{
- if (!_securityManager.IsMBSupporter)
- {
- return new ConnectSupporterSummary();
- }
-
var url = GetConnectUrl("keyAssociation");
var options = new HttpRequestOptions
@@ -1106,11 +1101,6 @@ namespace MediaBrowser.Server.Implementations.Connect
public async Task AddConnectSupporter(string id)
{
- if (!_securityManager.IsMBSupporter)
- {
- throw new InvalidOperationException();
- }
-
var url = GetConnectUrl("keyAssociation");
var options = new HttpRequestOptions
@@ -1139,11 +1129,6 @@ namespace MediaBrowser.Server.Implementations.Connect
public async Task RemoveConnectSupporter(string id)
{
- if (!_securityManager.IsMBSupporter)
- {
- throw new InvalidOperationException();
- }
-
var url = GetConnectUrl("keyAssociation");
var options = new HttpRequestOptions