Remove filter=active

This commit is contained in:
Ben Sarmiento
2023-10-24 04:54:01 +02:00
parent 03db4b0c00
commit c643eb1751

View File

@@ -104,7 +104,7 @@ func GetTorrents(accessToken string, customLimit int) ([]Torrent, int, error) {
params := url.Values{} params := url.Values{}
params.Set("page", fmt.Sprintf("%d", page)) params.Set("page", fmt.Sprintf("%d", page))
params.Set("limit", fmt.Sprintf("%d", limit)) params.Set("limit", fmt.Sprintf("%d", limit))
params.Set("filter", "active") // params.Set("filter", "active")
reqURL := baseURL + "?" + params.Encode() reqURL := baseURL + "?" + params.Encode()