|
@ -95,7 +95,7 @@ class Sabnzbd(DownloaderBase): |
|
|
'mode': 'version', |
|
|
'mode': 'version', |
|
|
}) |
|
|
}) |
|
|
v = sab_data.split('.') |
|
|
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.' |
|
|
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 |
|
|
# the version check will work even with wrong api key, so we need the next check as well |
|
|