[MastodonBridge] Update feed URL format (#1718)
Changes feed URL from `https://instance/users/username.atom` to `https://instance/@username.rss`.
This commit is contained in:
parent
fec52418d5
commit
d33e090fe1
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class MastodonBridge extends FeedExpander {
|
||||||
|
|
||||||
public function getURI(){
|
public function getURI(){
|
||||||
if($this->getInput('canusername'))
|
if($this->getInput('canusername'))
|
||||||
return 'https://' . $this->getInstance() . '/users/' . $this->getUsername() . '.atom';
|
return 'https://' . $this->getInstance() . '/@' . $this->getUsername() . '.rss';
|
||||||
|
|
||||||
return parent::getURI();
|
return parent::getURI();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue