mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-09 08:28:46 +00:00
Fix FacebookBridge feed name empty when data loaded from cache (#456)
This commit is contained in:
parent
3109694b1c
commit
49cc0661ad
@ -207,6 +207,6 @@ class FacebookBridge extends BridgeAbstract{
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function getName() {
|
public function getName() {
|
||||||
return (isset($this->authorName) ? $this->authorName.' - ' : '').'Facebook Bridge';
|
return isset($this->extraInfos['name']) ? $this->extraInfos['name'] : $this->authorName.' - Facebook Bridge';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user