SABnzbd connection test would fail when user is on SABnzbd-develop
@ -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