mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[GiphyBridge] include search text in feed name (#2628)
Co-authored-by: User123698745 <usr123698745+git@gmail.com>
This commit is contained in:
parent
bf2f9a06f9
commit
aacf5812ff
@ -31,6 +31,15 @@ class GiphyBridge extends BridgeAbstract {
|
||||
)
|
||||
));
|
||||
|
||||
public function getName()
|
||||
{
|
||||
if (!is_null($this->getInput('s'))) {
|
||||
return $this->getInput('s') . ' - ' . parent::getName();
|
||||
}
|
||||
|
||||
return parent::getName();
|
||||
}
|
||||
|
||||
protected function getGiphyItems($entries){
|
||||
foreach($entries as $entry) {
|
||||
$createdAt = new \DateTime($entry->import_datetime);
|
||||
|
Loading…
Reference in New Issue
Block a user