Revert feed title

This commit is contained in:
Kirill Kotikov 2020-03-26 21:37:19 +03:00 committed by GitHub
parent f2de5aecc7
commit fbfc82b0b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -626,9 +626,9 @@ class GithubTrendingBridge extends BridgeAbstract {
public function getName(){
if($this->getInput('language') == '') {
return self::NAME . ': All';
return self::NAME . ': all';
} elseif (!is_null($this->getInput('language'))) {
return self::NAME . ': ' . ucfirst($this->getInput('language'));
return self::NAME . ': ' . $this->getInput('language');
}
return parent::getName();