1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 14:18:35 +01:00

[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

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';
}
}