alxlaxv
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
1 deletions
-
app/SupportedApps/Sonarr.php
|
|
@ -25,7 +25,14 @@ class Sonarr implements Contracts\Applications, Contracts\Livestats { |
|
|
|
} |
|
|
|
else if(isset($status->error)) |
|
|
|
{ |
|
|
|
echo 'Error: '. $status->error; |
|
|
|
if($status->error == "Unauthorized") |
|
|
|
{ |
|
|
|
echo 'Incorrect API Key. You can find it in Settings > General'; |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
echo 'Error: '. $status->error; |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|