aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/EntryPoints
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-23 01:25:55 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-23 01:25:55 -0400
commit7300a475d1892c553bb0a3a5fc21cc32d09b4950 (patch)
tree3d412cb60d8bb71ec2bc0a414cfea80e44ca9b22 /MediaBrowser.Server.Implementations/EntryPoints
parentcf27ac47a8366ea1710908c4aa1093a6a85d7139 (diff)
update live tv setup
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints')
-rw-r--r--MediaBrowser.Server.Implementations/EntryPoints/UsageReporter.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/UsageReporter.cs b/MediaBrowser.Server.Implementations/EntryPoints/UsageReporter.cs
index 315493e0d..77dd54a80 100644
--- a/MediaBrowser.Server.Implementations/EntryPoints/UsageReporter.cs
+++ b/MediaBrowser.Server.Implementations/EntryPoints/UsageReporter.cs
@@ -46,6 +46,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
data["guests"] = users.Count(i => i.ConnectLinkType.HasValue && i.ConnectLinkType.Value == UserLinkType.Guest).ToString(CultureInfo.InvariantCulture);
data["linkedusers"] = users.Count(i => i.ConnectLinkType.HasValue && i.ConnectLinkType.Value == UserLinkType.LinkedUser).ToString(CultureInfo.InvariantCulture);
+ data["plugins"] = string.Join(",", _applicationHost.Plugins.Select(i => i.Id).ToArray());
+
return _httpClient.Post(MbAdminUrl + "service/registration/ping", data, cancellationToken);
}