mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-09 16:38:50 +00:00
[YouTubeCommunityTabBridge] Fix getURI implementation
Previously the undefined property "feedUri" was accessed here, always causing a fallback to the parent class
This commit is contained in:
parent
48385777b4
commit
bf0d771367
@ -114,8 +114,8 @@ class YouTubeCommunityTabBridge extends BridgeAbstract
|
|||||||
|
|
||||||
public function getURI()
|
public function getURI()
|
||||||
{
|
{
|
||||||
if (!empty($this->feedUri)) {
|
if (!empty($this->feedUrl)) {
|
||||||
return $this->feedUri;
|
return $this->feedUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
return parent::getURI();
|
return parent::getURI();
|
||||||
|
Loading…
Reference in New Issue
Block a user