Browse Source

Merge pull request #6991 from Safihre/develop

SABnzbd connection test would fail when user is on SABnzbd-develop
pull/7035/head
Ruud Burger 9 years ago
committed by GitHub
parent
commit
211a25a79e
  1. 2
      couchpotato/core/downloaders/sabnzbd.py

2
couchpotato/core/downloaders/sabnzbd.py

@ -95,7 +95,7 @@ class Sabnzbd(DownloaderBase):
'mode': 'version',
})
v = sab_data.split('.')
if int(v[0]) == 0 and int(v[1]) < 7:
if sab_data != 'develop' and int(v[0]) == 0 and int(v[1]) < 7:
return False, 'Your Sabnzbd client is too old, please update to newest version.'
# the version check will work even with wrong api key, so we need the next check as well

Loading…
Cancel
Save