remove OS and email from default UserAgent

This commit is contained in:
crobibero 2020-08-19 13:41:00 -06:00
parent f6b8cd4b46
commit abb79bf810
1 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,4 @@
using System;
using System.Net.Http;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading;
using System.Threading.Tasks;
@ -22,8 +21,7 @@ namespace MediaBrowser.Common.Net
{
_userAgentValues = new[]
{
new ProductInfoHeaderValue(applicationHost.Name.Replace(' ', '-'), applicationHost.ApplicationVersionString),
new ProductInfoHeaderValue($"({Environment.OSVersion}; {applicationHost.ApplicationUserAgentAddress})")
new ProductInfoHeaderValue(applicationHost.Name.Replace(' ', '-'), applicationHost.ApplicationVersionString)
};
}