Browse Source

Update Sonarr.php

pull/271/head
alxlaxv 7 years ago
committed by GitHub
parent
commit
c064e35a04
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/SupportedApps/Sonarr.php

1
app/SupportedApps/Sonarr.php

@ -94,7 +94,6 @@ class Sonarr implements Contracts\Applications, Contracts\Livestats {
$url = rtrim($url, '/');
$api_url = $url.'/api/queue?apikey='.$config->apiKey.'&pageSize=1';
$client = new Client(['http_errors' => false, 'timeout' => 15, 'connect_timeout' => 15]);
$queue = $client->request('GET', $api_url));
$res = $client->request('GET', $api_url);
echo $res;
$queue = sizeof($res);

Loading…
Cancel
Save