From e5729fdaacb7fc18c3590c406cc3c50eaa0222c8 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 15 Jul 2023 15:18:09 +0200 Subject: [PATCH] [YouTubeCommunityTabBridge] Fix PHP warnings for posts w/o text (#3536) Because "contentText" is always present, PHP warnings were previously generated for posts without text. Existence of sub-property "runs" gets checked now to avoid this. --- bridges/YouTubeCommunityTabBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/YouTubeCommunityTabBridge.php b/bridges/YouTubeCommunityTabBridge.php index c9ea5863..32502f61 100644 --- a/bridges/YouTubeCommunityTabBridge.php +++ b/bridges/YouTubeCommunityTabBridge.php @@ -92,7 +92,7 @@ class YouTubeCommunityTabBridge extends BridgeAbstract $item['author'] = $details->authorText->runs[0]->text; $item['content'] = ''; - if (isset($details->contentText)) { + if (isset($details->contentText->runs)) { $text = $this->getText($details->contentText->runs); $this->itemTitle = $this->ellipsisTitle($text);