changed error message

This commit is contained in:
KodeStar
2018-02-08 19:28:23 +00:00
parent e0d08c60d0
commit b910a933fb

View File

@@ -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;