expand zero compression to all POSTs

This commit is contained in:
Barron Hagerman 2019-10-01 11:34:31 -05:00
parent 0ddd40a5f4
commit 3f11b6682e

View File

@ -325,7 +325,8 @@ namespace NextPvr
var options = new HttpRequestOptions
{
CancellationToken = cancellationToken,
Url = string.Format("{0}/public/ScheduleService/Record?sid={1}", baseUrl, Sid)
Url = string.Format("{0}/public/ScheduleService/Record?sid={1}", baseUrl, Sid),
DecompressionMethod = CompressionMethod.None
};
var timerSettings = await GetDefaultScheduleSettings(cancellationToken).ConfigureAwait(false);
@ -470,7 +471,8 @@ namespace NextPvr
var options = new HttpRequestOptions
{
CancellationToken = cancellationToken,
Url = string.Format("{0}/public/ScheduleService/Record?sid={1}", baseUrl, Sid)
Url = string.Format("{0}/public/ScheduleService/Record?sid={1}", baseUrl, Sid),
DecompressionMethod = CompressionMethod.None
};
var timerSettings = await GetDefaultScheduleSettings(cancellationToken).ConfigureAwait(false);
@ -551,7 +553,8 @@ namespace NextPvr
var options = new HttpRequestOptions
{
CancellationToken = cancellationToken,
Url = string.Format("{0}/public/ScheduleService/UpdateRecurr?sid={1}", baseUrl, Sid)
Url = string.Format("{0}/public/ScheduleService/UpdateRecurr?sid={1}", baseUrl, Sid),
DecompressionMethod = CompressionMethod.None
};
var timerSettings = await GetDefaultScheduleSettings(cancellationToken).ConfigureAwait(false);
@ -600,7 +603,8 @@ namespace NextPvr
var options = new HttpRequestOptions
{
CancellationToken = cancellationToken,
Url = string.Format("{0}/public/ScheduleService/UpdateRec?sid={1}", baseUrl, Sid)
Url = string.Format("{0}/public/ScheduleService/UpdateRec?sid={1}", baseUrl, Sid),
DecompressionMethod = CompressionMethod.None
};
var timerSettings = await GetDefaultScheduleSettings(cancellationToken).ConfigureAwait(false);