Skip to content

Commit

Permalink
Merge pull request #491 from NathanBaulch/v3.x
Browse files Browse the repository at this point in the history
Fix regression in OEmbed provider Embedly
  • Loading branch information
oscarotero committed Jul 15, 2022
2 parents 44c45d8 + f8ddcd9 commit fe379f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Providers/OEmbed/Embedly.php
Expand Up @@ -42,7 +42,7 @@ public function getEndPoint()
{
return Url::create('http://api.embed.ly/1/oembed')
->withQueryParameters([
'url' => (string) $this->getUrl(),
'url' => (string) $this->response->getUrl(),
'format' => 'json',
'key' => $this->key,
]);
Expand Down

0 comments on commit fe379f6

Please sign in to comment.