Webhook Extension: How to avoid multiple calls for the same event #528
Replies: 1 comment
|
This is expected with the current code. The extension hooks The extension has an Until that is fixed upstream, the simplest workaround is to edit if ($entry->isUpdated()) {
return $entry;
}(replacing the To confirm the cause: the extension only logs failures, not successful sends. You can temporarily add Code: https://github.com/FreshRSS/Extensions/blob/main/xExtension-Webhook/extension.php |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello,
i like the idea of the webhook extension.
My usecase is to send out a pushover notification if a specific topic is found.
The pushover connection works fine.
My filter looks like this:
intitle:FreshRSSintitle:Frigateintitle:pfSenseSo i want to get a pushover notification, if one of the keywords is part of the title of a rss news. I do get a notification, but multiple times. It seems on every RSS fetch process, the webhook gets triggered. Again and again. It would be great, if the webhook would be only triggered once. How can i achive this behaviour? Thank you!
All reactions