Skip to content

Commit

Permalink
Fixed NZBIndex Beta RegEx
Browse files Browse the repository at this point in the history
  • Loading branch information
nzblnk committed Jan 13, 2019
1 parent 45335fb commit 39dcf83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/nzbmonkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ def search_nzb(header, password, search_engines, best_nzb, max_missing_files, ma
{
'name': 'NZBIndex Beta',
'searchUrl': 'http://beta.nzbindex.com/search/rss?q={0}&hidespam=1&sort=agedesc&complete=1',
'regex': r'<link>http:\/\/beta\.nzbindex\.com\/download\/(?P<id>\d{8,})<\/link>',
'regex': r'<link>http:\/\/beta\.nzbindex\.com\/download\/(?P<id>\d{8,})\/?<\/link>',
'downloadUrl': 'http://beta.nzbindex.com/download/{id}.nzb?r[]={id}',
'skip_segment_debug': False
},
Expand Down
5 changes: 4 additions & 1 deletion src/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"""
History
v0.2.4
- NzbindexBeta indexer regex fix
v0.2.3
- NzbindexBeta indexer added
Expand Down Expand Up @@ -72,5 +75,5 @@
"""

__version__ = '0.2.3'
__version__ = '0.2.4'
__requires__ = ['pyperclip', 'requests', 'configobj', 'colorama', 'cryptography']

0 comments on commit 39dcf83

Please sign in to comment.