Add missing param

This commit is contained in:
Eric Reed 2015-09-26 17:14:13 -04:00
parent e761d81418
commit 33ab78155f
3 changed files with 12 additions and 4 deletions

View file

@ -291,7 +291,7 @@ namespace MediaBrowser.Api
public async Task Post(RegisterAppstoreSale request) public async Task Post(RegisterAppstoreSale request)
{ {
var success = await _securityManager.RegisterAppStoreSale(request.Store, request.Application, request.Product, request.Type, request.StoreId, request.StoreToken, request.Email, request.Amount); var success = await _securityManager.RegisterAppStoreSale(request.Store, request.Application, request.Product, request.Feature, request.Type, request.StoreId, request.StoreToken, request.Email, request.Amount);
if (!success) throw new ApplicationException("Error registering store sale"); if (!success) throw new ApplicationException("Error registering store sale");
} }

View file

@ -186,7 +186,7 @@ namespace MediaBrowser.Common.Implementations.Security
} }
} }
public async Task<Boolean> RegisterAppStoreSale(string store, string application, string product, public async Task<Boolean> RegisterAppStoreSale(string store, string application, string product, string feature,
string type, string storeId, string storeToken, string email, string amt) string type, string storeId, string storeToken, string email, string amt)
{ {
var data = new Dictionary<string, string>() var data = new Dictionary<string, string>()
@ -194,6 +194,7 @@ namespace MediaBrowser.Common.Implementations.Security
{"store", store}, {"store", store},
{"application", application}, {"application", application},
{"product", product}, {"product", product},
{"feature", feature},
{"type", type}, {"type", type},
{"storeId", storeId}, {"storeId", storeId},
{"token", storeToken}, {"token", storeToken},
@ -201,9 +202,16 @@ namespace MediaBrowser.Common.Implementations.Security
{"amt", amt} {"amt", amt}
}; };
var options = new HttpRequestOptions()
{
Url = AppstoreRegUrl,
CancellationToken = CancellationToken.None
};
options.RequestHeaders.Add("X-Emby-Token", /*_appHost.SystemId*/ "08606E86D043");
try try
{ {
using (var json = await _httpClient.Post(AppstoreRegUrl, data, CancellationToken.None).ConfigureAwait(false)) using (var json = await _httpClient.Post(options, data).ConfigureAwait(false))
{ {
var reg = _jsonSerializer.DeserializeFromStream<RegRecord>(json); var reg = _jsonSerializer.DeserializeFromStream<RegRecord>(json);
if (!String.IsNullOrEmpty(reg.key)) if (!String.IsNullOrEmpty(reg.key))

View file

@ -45,7 +45,7 @@ namespace MediaBrowser.Common.Security
/// Register an appstore sale /// Register an appstore sale
/// </summary> /// </summary>
/// <returns>true if successful</returns> /// <returns>true if successful</returns>
Task<Boolean> RegisterAppStoreSale(string store, string application, string product, Task<Boolean> RegisterAppStoreSale(string store, string application, string product, string feature,
string type, string storeId, string storeToken, string email, string amt); string type, string storeId, string storeToken, string email, string amt);
/// <summary> /// <summary>