Skip to content

Commit fe379f6

Browse files
authored
Merge pull request #491 from NathanBaulch/v3.x
Fix regression in OEmbed provider Embedly
2 parents 44c45d8 + f8ddcd9 commit fe379f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Providers/OEmbed/Embedly.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function getEndPoint()
4242
{
4343
return Url::create('http://api.embed.ly/1/oembed')
4444
->withQueryParameters([
45-
'url' => (string) $this->getUrl(),
45+
'url' => (string) $this->response->getUrl(),
4646
'format' => 'json',
4747
'key' => $this->key,
4848
]);

0 commit comments

Comments
 (0)