mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-16 15:19:55 +03: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
1 changed files with 2 additions and 2 deletions
|
@ -114,8 +114,8 @@ class YouTubeCommunityTabBridge extends BridgeAbstract
|
|||
|
||||
public function getURI()
|
||||
{
|
||||
if (!empty($this->feedUri)) {
|
||||
return $this->feedUri;
|
||||
if (!empty($this->feedUrl)) {
|
||||
return $this->feedUrl;
|
||||
}
|
||||
|
||||
return parent::getURI();
|
||||
|
|
Loading…
Add table
Reference in a new issue