From 4187d8f4cfd84cd194e2de72d8825604bfe2e4c7 Mon Sep 17 00:00:00 2001 From: Florent Machen Date: Fri, 29 Oct 2021 22:32:31 +0200 Subject: [PATCH] [GitHubGistBridge] fix use the css selector "contains" to find a class in the middle of the utility classes (#2306) --- bridges/GitHubGistBridge.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bridges/GitHubGistBridge.php b/bridges/GitHubGistBridge.php index f20acb59..16d5350e 100644 --- a/bridges/GitHubGistBridge.php +++ b/bridges/GitHubGistBridge.php @@ -56,12 +56,12 @@ class GitHubGistBridge extends BridgeAbstract { $html = defaultLinkTo($html, $this->getURI()); - $fileinfo = $html->find('[class="file-info"]', 0) + $fileinfo = $html->find('[class~="file-info"]', 0) or returnServerError('Could not find file info!'); $this->filename = $fileinfo->plaintext; - $comments = $html->find('div[class="timeline-comment-wrapper"]'); + $comments = $html->find('div[class~="TimelineItem"]'); if(is_null($comments)) { // no comments yet return; @@ -72,7 +72,7 @@ class GitHubGistBridge extends BridgeAbstract { $uri = $comment->find('a[href*=#gistcomment]', 0) or returnServerError('Could not find comment anchor!'); - $title = $comment->find('div[class="unminimized-comment"] h3[class="timeline-comment-header-text"]', 0) + $title = $comment->find('div[class~="unminimized-comment"] h3[class~="timeline-comment-header-text"]', 0) or returnServerError('Could not find comment header text!'); $datetime = $comment->find('[datetime]', 0) @@ -81,7 +81,7 @@ class GitHubGistBridge extends BridgeAbstract { $author = $comment->find('a.author', 0) or returnServerError('Could not find author name!'); - $message = $comment->find('[class="comment-body"]', 0) + $message = $comment->find('[class~="comment-body"]', 0) or returnServerError('Could not find comment body!'); $item = array();