fix(newsfeed): handle object summaries - #4267
Closed
KristjanESPERANTO wants to merge 2 commits into
Closed
KristjanESPERANTO wants to merge 2 commits into
KristjanESPERANTO wants to merge 2 commits into
Conversation
khassel
pushed a commit
that referenced
this pull request
Sep 16, 2026
feedme.js seems to be dead, lets use something more maintained. Could supersede #4267 --------- Co-authored-by: veeck <gitkraken@veeck.de> Co-authored-by: Kristjan ESPERANTO <35647502+KristjanESPERANTO@users.noreply.github.com>
Collaborator
|
@KristjanESPERANTO can this be closed after #4269 is merged now? |
Collaborator
Author
|
Yes :) |
khassel
pushed a commit
that referenced
this pull request
Sep 17, 2026
…4271) While looking closer at newsfeed for #4212, #4267 and #4269, I felt `newsfeedfetcher.js` was doing too much: HTTP/parser stuff, HTML cleanup, and turning raw `feedparser` items into our item format, all in one file. This PR moves the HTML cleanup and item conversion into a new `feeditem.js`. `newsfeedfetcher.js` now only deals with HTTP/parser, feed-level TTL, and config validation for `allowedBasicHtmlTags`. This is just a refactor, no behavior change. Tests were split to match, plus I added one new test for the empty Atom `<summary>` case from #4212.
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.
This PR fixes #4212.
A fix in FeedMe itself would be the ideal solution, but the project appears to be unmaintained. It has not had a release in about five years, and there has been no response to my PR: fent/feedme.js#58
I’ve also added a few additional tests to help prevent regressions in future changes.
Note: I have also started looking into alternatives for FeedMe. rowanmanning/feed-parser looks promising so far, but switching to it would require a more extensive code change, so I would prefer to handle that later (after the comming release).