You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found at the docs that there are functions like strings.startswith, but they only supported in rtorrent-ps
It would be great to have such built-ins in original rtorrent codebase
Use case: I need to automate trackers list management. To be precise, I need to remove some trackers from torrent file on its insertion. Many of trackers in our country add the retracker.local tracker to the trackers list (it's something the local peer discovery and bep22 were created for at the same time). But nowadays this technique is no longer used by the ISPs. Hence, this trackers in torrents generates the errors and annoys me at the Flood UI with red rows
My solution is based on adding a handler to event.download.inserted event and then via t.multicall with conditional branch to disable that trackers
The text was updated successfully, but these errors were encountered:
I've found at the docs that there are functions like
strings.startswith
, but they only supported in rtorrent-psIt would be great to have such built-ins in original rtorrent codebase
Use case: I need to automate trackers list management. To be precise, I need to remove some trackers from torrent file on its insertion. Many of trackers in our country add the
retracker.local
tracker to the trackers list (it's something the local peer discovery and bep22 were created for at the same time). But nowadays this technique is no longer used by the ISPs. Hence, this trackers in torrents generates the errors and annoys me at the Flood UI with red rowsMy solution is based on adding a handler to
event.download.inserted
event and then viat.multicall
with conditional branch to disable that trackersThe text was updated successfully, but these errors were encountered: