device-type header on login

This commit is contained in:
Kyle Spearrin 2017-12-18 13:58:36 -05:00
parent 6fe5e89ecc
commit a4fbd521e3
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ using Plugin.Connectivity.Abstractions;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using Bit.App.Enums;
using Bit.App.Utilities;
namespace Bit.App.Repositories
{
@ -38,6 +39,9 @@ namespace Bit.App.Repositories
Content = new FormUrlEncodedContent(requestObj.ToIdentityTokenRequest())
};
requestMessage.Headers.Add("Device-Type", ((int)Helpers.OnPlatform(iOS: DeviceType.iOS,
Android: DeviceType.Android, Windows: DeviceType.UWP)).ToString());
try
{
var response = await client.SendAsync(requestMessage).ConfigureAwait(false);