aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/Updates/InstallationManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-06 13:46:09 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-06 13:46:09 -0400
commit41cabc7bd37eadf2752b50a6b5090af5dcf10035 (patch)
tree650451ac7d7871202e3264cc7964eb15b4e75cd6 /MediaBrowser.Common.Implementations/Updates/InstallationManager.cs
parent392699404b8e7c530314d2a164b43101a672bf13 (diff)
add system id to remote calls
Diffstat (limited to 'MediaBrowser.Common.Implementations/Updates/InstallationManager.cs')
-rw-r--r--MediaBrowser.Common.Implementations/Updates/InstallationManager.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/Updates/InstallationManager.cs b/MediaBrowser.Common.Implementations/Updates/InstallationManager.cs
index e4c88e656..fb0c9914f 100644
--- a/MediaBrowser.Common.Implementations/Updates/InstallationManager.cs
+++ b/MediaBrowser.Common.Implementations/Updates/InstallationManager.cs
@@ -154,7 +154,12 @@ namespace MediaBrowser.Common.Implementations.Updates
PackageType? packageType = null,
Version applicationVersion = null)
{
- var data = new Dictionary<string, string> { { "key", _securityManager.SupporterKey }, { "mac", _networkManager.GetMacAddress() } };
+ var data = new Dictionary<string, string>
+ {
+ { "key", _securityManager.SupporterKey },
+ { "mac", _networkManager.GetMacAddress() },
+ { "systemid", _applicationHost.SystemId }
+ };
using (var json = await _httpClient.Post(Constants.Constants.MbAdminUrl + "service/package/retrieveall", data, cancellationToken).ConfigureAwait(false))
{