mirror of
https://github.com/Radarr/Radarr
synced 2025-02-01 04:13:42 +00:00
Fixed: OsInfo being renamed to PlatformInfo
This commit is contained in:
parent
dbf12e1fa4
commit
a28f2fd21d
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ public HttpResponse GetResponse(HttpRequest request, CookieContainer cookies)
|
|||
{
|
||||
webRequest = (HttpWebRequest) WebRequest.Create((Uri) request.Url);
|
||||
|
||||
if (PlatformInfo.IsMono)
|
||||
if (OsInfo.IsMonoRuntime)
|
||||
{
|
||||
// On Mono GZipStream/DeflateStream leaks memory if an exception is thrown, use an intermediate buffer in that case.
|
||||
webRequest.AutomaticDecompression = DecompressionMethods.None;
|
||||
|
@ -98,7 +98,7 @@ public HttpResponse GetResponse(HttpRequest request, CookieContainer cookies)
|
|||
{
|
||||
data = responseStream.ToBytes();
|
||||
|
||||
if (PlatformInfo.IsMono && httpWebResponse.ContentEncoding == "gzip")
|
||||
if (OsInfo.IsMonoRuntime && httpWebResponse.ContentEncoding == "gzip")
|
||||
{
|
||||
using (var compressedStream = new MemoryStream(data))
|
||||
using (var gzip = new GZipStream(compressedStream, CompressionMode.Decompress))
|
||||
|
|
Loading…
Reference in a new issue