From fd5a72370abca9eaf89c741f9742dbda27d5aed2 Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Sun, 11 Feb 2024 14:44:05 +0100 Subject: [PATCH] 100 at a time --- pkg/realdebrid/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/realdebrid/api.go b/pkg/realdebrid/api.go index 6105536..bc5241e 100644 --- a/pkg/realdebrid/api.go +++ b/pkg/realdebrid/api.go @@ -116,7 +116,7 @@ func (rd *RealDebrid) GetTorrents(customLimit int, active bool) ([]Torrent, int, page := 1 limit := customLimit if limit == 0 { - limit = 500 + limit = 100 } totalCount := 0