Skip to content

Commit

Permalink
Merge branch 'hotfix/0.4.0.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ne-Lexa committed Oct 3, 2022
2 parents dcb6486 + b4a4565 commit 5ad5c19
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/GPlayApps.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@

namespace Nelexa\GPlay;

use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Promise\EachPromise;
use GuzzleHttp\Promise\FulfilledPromise;
use GuzzleHttp\Psr7\Query;
use GuzzleHttp\Psr7\Request as PsrRequest;
use GuzzleHttp\Psr7\Uri;
use GuzzleHttp\RequestOptions;
use Nelexa\GPlay\Enum\CategoryEnum;
use Nelexa\GPlay\Exception\GooglePlayException;
use Nelexa\GPlay\HttpClient\HttpClient;
use Nelexa\GPlay\HttpClient\Request;
use Nelexa\GPlay\Model\Category;
Expand Down Expand Up @@ -1104,11 +1104,7 @@ protected function fetchAppsFromClusterPages($category, ?Enum\AgeEnum $age, int
}
}
}
} catch (RequestException $e) {
$response = $e->getResponse();
if ($response === null || $response->getStatusCode() !== 404) {
throw $e;
}
} catch (GooglePlayException $e) {
}
}

Expand Down

0 comments on commit 5ad5c19

Please sign in to comment.