diff --git a/src/Adapters/Instagram.php b/src/Adapters/Instagram.php index 5cb6ebf4..1d0f4ca1 100644 --- a/src/Adapters/Instagram.php +++ b/src/Adapters/Instagram.php @@ -15,6 +15,8 @@ class Instagram extends Webpage */ public static function check(Response $response) { - return $response->isValid([200, 429]); + return $response->isValid([200, 429]) && $response->getUrl()->match([ + '*.instagram.*', + ]); } }