mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-17 02:10:48 +02:00
Fixed: (Torznab) Add SupportsPagination
This commit is contained in:
parent
3ea43d711a
commit
b86a4fd670
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,6 @@
|
|||
using FluentValidation.Results;
|
||||
using NLog;
|
||||
using NzbDrone.Common.Extensions;
|
||||
using NzbDrone.Common.Http;
|
||||
using NzbDrone.Core.Configuration;
|
||||
using NzbDrone.Core.Indexers.Newznab;
|
||||
using NzbDrone.Core.Messaging.Events;
|
||||
|
|
@ -23,6 +22,7 @@ public class Torznab : TorrentIndexerBase<TorznabSettings>
|
|||
public override string Description => "A Newznab-like api for torrents.";
|
||||
public override bool FollowRedirect => true;
|
||||
public override bool SupportsRedirect => true;
|
||||
public override bool SupportsPagination => true;
|
||||
|
||||
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
|
||||
public override IndexerPrivacy Privacy => IndexerPrivacy.Private;
|
||||
|
|
|
|||
Loading…
Reference in a new issue