RSS autodownload

randac56

Member
May 25, 2018
915
0
16
I followed the tutorial and manual download works fine's, but autodownload doesn't work at all. It updates that RSS feed list with new torrents and I can see "status: RSS", why it doesn't start downloading automatically. Tried with filter and without it. In filter I didn't specific any regexp, because I want to download all torrents. My filter looks like this:





So can anybody tell me how to solve this problem?
 

simur612

Member
May 25, 2018
879
0
16
heh yeah I was just going to suggest this.

/*/i
This will match torrents with a single asterisk as their name "*" but case insensitive.

Novik's /.*/i will match ANY character (the /. is any single character) repeated ANY number of times (the * means repeat), with any case (the /i means case insensitive)