From d33e090fe18ea1ca8ad52aa4d8dcce5fd7bb3b96 Mon Sep 17 00:00:00 2001 From: Joseph Date: Thu, 3 Sep 2020 05:49:19 +0000 Subject: [PATCH] [MastodonBridge] Update feed URL format (#1718) Changes feed URL from `https://instance/users/username.atom` to `https://instance/@username.rss`. --- bridges/MastodonBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/MastodonBridge.php b/bridges/MastodonBridge.php index 9e131b7d..de5e41f4 100644 --- a/bridges/MastodonBridge.php +++ b/bridges/MastodonBridge.php @@ -78,7 +78,7 @@ class MastodonBridge extends FeedExpander { public function getURI(){ if($this->getInput('canusername')) - return 'https://' . $this->getInstance() . '/users/' . $this->getUsername() . '.atom'; + return 'https://' . $this->getInstance() . '/@' . $this->getUsername() . '.rss'; return parent::getURI(); }