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 57d604e commit dbc7a5aCopy full SHA for dbc7a5a
utils/receiver.php
@@ -83,18 +83,6 @@ public function createWebmention()
83
public function getTransformedSourceUrl(string $url): string
84
{
85
if (V::url($url)) {
86
- if (strpos($url, 'brid.gy') !== false) {
87
- $bridyResult = Remote::get($url . '?format=json');
88
- $bridyJson = json_decode($bridyResult->content());
89
- $authorUrls = $bridyJson->properties->author[0]->properties->url;
90
-
91
- foreach ($authorUrls as $authorUrl) {
92
- if ($this->isKnownNetwork($authorUrl)) {
93
- return $authorUrl;
94
- }
95
96
97
98
return $url;
99
}
100
0 commit comments