1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-05 16:17:28 +02: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:
Thomas
2023-07-04 16:21:14 +02:00
committed by Paul
parent 48385777b4
commit bf0d771367

View File

@@ -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();