forked from blallo/rss-bridge
Fix FacebookBridge feed name empty when data loaded from cache (#456)
This commit is contained in:
parent
3109694b1c
commit
49cc0661ad
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue