Skip to content

Commit fbc79da

Browse files
authored
Merge pull request #298 from xyNNN/master
Fixed protocols (HTTP to HTTPS)
2 parents d8e6233 + 73671bc commit fbc79da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Providers/OEmbed/Instagram.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Instagram extends EndPoint implements EndPointInterface
1010
'instagram.com/p/*',
1111
'www.instagram.com/p/*',
1212
];
13-
protected static $endPoint = 'http://api.instagram.com/oembed';
13+
protected static $endPoint = 'https://api.instagram.com/oembed';
1414

1515
/**
1616
* {@inheritdoc}

src/Providers/OEmbed/Soundcloud.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
class Soundcloud extends EndPoint implements EndPointInterface
66
{
77
protected static $pattern = 'soundcloud.com/*';
8-
protected static $endPoint = 'http://soundcloud.com/oembed';
8+
protected static $endPoint = 'https://soundcloud.com/oembed';
99
}

0 commit comments

Comments
 (0)