Преглед изворни кода

[GithubIssueBridge] fix comments number

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
Pierre Mazière пре 7 година
родитељ
комит
c051730f7c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      bridges/GithubIssueBridge.php

+ 1 - 1
bridges/GithubIssueBridge.php

@@ -57,7 +57,7 @@ class GithubIssueBridge extends BridgeAbstract{
         $item['title']=$issue->find('.js-navigation-open',0)->plaintext;
         $comments=$issue->firstChild()->firstChild()
           ->nextSibling()->nextSibling()->nextSibling()->plaintext;
-        $item['content']='Comments: '.$comments;
+        $item['content']='Comments: '.($comments?$comments:'0');
         $item['uri']='https://github.com'.$issue->find('.js-navigation-open',0)->getAttribute('href');
         $this->items[]=$item;
       }