[Webhook] Add missing "Ignore updated articles" checkbox - #531
Merged
Merged
Conversation
The ignore_updated option was read and saved by extension.php but had no field in configure.phtml, so it could not be enabled and every save reset it to false. Add the checkbox with en/fr strings and document it. Ref FreshRSS#528
wmorin
force-pushed
the
webhook-ignore-updated-checkbox
branch
from
September 26, 2026 15:42
98f52cb to
654720b
Compare
Alkarex
approved these changes
Sep 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ref #528
extension.phpalready supports anignore_updatedoption (processArticle()skips entries where$entry->isUpdated()), butconfigure.phtmlnever rendered a field for it. So it could not be enabled from the UI, and every save of the settings wrote it back asfalse.This matters because core also calls
entry_before_insertfor known entries whose content changed, so feeds that tweak their items send the same webhook again on each refresh.This PR adds the checkbox with English and French strings, a short README section, and bumps the version to 0.2.4. No PHP logic change, and the default stays off.
Tested on
freshrss/freshrss:latest(1.30.0) with a local feed and webhook receiver, saving through the real configure form:The repo's composer and npm checks (php-lint, phtml-lint, phpcs, phpstan, eslint, markdownlint, stylelint) and typos pass locally.