mirror of
https://github.com/jellyfin/jellyfin-plugin-nextpvr.git
synced 2024-11-27 08:00:21 +00:00
expand zero compression to all POSTs
This commit is contained in:
parent
0ddd40a5f4
commit
3f11b6682e
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user