We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d9c354 commit 443805aCopy full SHA for 443805a
src/Adapters/Facebook/OEmbed.php
@@ -23,7 +23,7 @@ protected function detectEndpoint(): ?UriInterface
23
$uri = $this->extractor->getUri();
24
if (strpos($uri->getPath(), 'login') !== false) {
25
parse_str($uri->getQuery(), $params);
26
- if (isset($params['next']) && $params['next']) {
+ if (!empty($params['next'])) {
27
$uri = $this->extractor->getCrawler()->createUri($params['next']);
28
}
29
0 commit comments