Browse Source

changed error message

pull/21/head
KodeStar 7 years ago
parent
commit
b910a933fb
  1. 3
      app/SupportedApps/Nzbget.php

3
app/SupportedApps/Nzbget.php

@ -29,6 +29,9 @@ class Nzbget implements Contracts\Applications, Contracts\Livestats {
case 401:
echo 'Failed: Invalid credentials';
break;
case 404:
echo 'Failed: Please make sure your URL is correct and that there is a trailing slash';
break;
default:
echo 'Something went wrong... Code: '.$res->getStatusCode();
break;

Loading…
Cancel
Save