From bf0d771367b78f59996bfbaa4ad4e8ac5e51d557 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 4 Jul 2023 16:21:14 +0200 Subject: [PATCH] [YouTubeCommunityTabBridge] Fix getURI implementation Previously the undefined property "feedUri" was accessed here, always causing a fallback to the parent class --- bridges/YouTubeCommunityTabBridge.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridges/YouTubeCommunityTabBridge.php b/bridges/YouTubeCommunityTabBridge.php index 4ee0f0bc..c9ea5863 100644 --- a/bridges/YouTubeCommunityTabBridge.php +++ b/bridges/YouTubeCommunityTabBridge.php @@ -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();