remove OS and email from default UserAgent

pull/3935/head
crobibero 4 years ago
parent f6b8cd4b46
commit abb79bf810

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

Loading…
Cancel
Save