[YandexZenBridge] Fix feed title if username not specified (#2922)

This commit is contained in:
llamasblade 2022-07-13 12:08:11 +02:00 committed by GitHub
parent 1294d3b953
commit 9b0f8095c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -61,6 +61,9 @@ class YandexZenBridge extends BridgeAbstract
public function getName()
{
if (is_null($this->getInput('username'))) {
return parent::getName();
}
return $this->getInput('username') . '\'s latest zen.yandex posts';
}
}