Skip to content

Commit

Permalink
Adjust torrentscsv query size limit
Browse files Browse the repository at this point in the history
  • Loading branch information
xavier2k6 committed Jan 27, 2025
1 parent f01d47f commit 9d7ba9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nova3/engines/torrentscsv.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VERSION: 1.4
# VERSION: 1.5
# AUTHORS: Dessalines

# Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -53,7 +53,7 @@ class torrentscsv(object):
trackers = '&'.join(urlencode({'tr': tracker}) for tracker in trackers_list)

def search(self, what, cat='all'):
search_url = "{}/service/search?size=300&q={}".format(self.url, what)
search_url = "{}/service/search?size=100&q={}".format(self.url, what)
desc_url = "{}/#/search/torrent/{}/1".format(self.url, what)

# get response json
Expand Down
2 changes: 1 addition & 1 deletion nova3/engines/versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ piratebay: 3.4
solidtorrents: 2.4
torlock: 2.25
torrentproject: 1.5
torrentscsv: 1.4
torrentscsv: 1.5

0 comments on commit 9d7ba9b

Please sign in to comment.