mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-18 13:41:52 +01:00
Update timezone offset for AvistaZ trackers
This commit is contained in:
parent
46b6124b97
commit
f02a6f3e2c
3 changed files with 3 additions and 3 deletions
|
|
@ -84,6 +84,6 @@ protected override string GetEpisodeSearchTerm(TvSearchCriteria searchCriteria)
|
|||
|
||||
public class AvistaZParser : AvistazParserBase
|
||||
{
|
||||
protected override string TimezoneOffset => "+02:00";
|
||||
protected override string TimezoneOffset => "+01:00";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ namespace NzbDrone.Core.Indexers.Definitions.Avistaz
|
|||
{
|
||||
public class AvistazParserBase : IParseIndexerResponse
|
||||
{
|
||||
protected virtual string TimezoneOffset => "-04:00"; // Avistaz does not specify a timezone & returns server time
|
||||
protected virtual string TimezoneOffset => "-05:00"; // Avistaz does not specify a timezone & returns server time
|
||||
private readonly HashSet<string> _hdResolutions = new () { "1080p", "1080i", "720p" };
|
||||
|
||||
public Action<IDictionary<string, string>, DateTime?> CookiesUpdater { get; set; }
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ public class ExoticaZParser : AvistazParserBase
|
|||
{
|
||||
private readonly IndexerCapabilitiesCategories _categories;
|
||||
|
||||
protected override string TimezoneOffset => "+02:00";
|
||||
protected override string TimezoneOffset => "+01:00";
|
||||
|
||||
public ExoticaZParser(IndexerCapabilitiesCategories categories)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue