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