Flym icon indicating copy to clipboard operation
Flym copied to clipboard

Feed not working: Latest Linux Kernel Version Feed

Open Yky opened this issue 7 years ago • 1 comments

F-Droid Flym 2.2.3 on Android 9

Fresh install. Added this feed: https://www.kernel.org/feeds/kdist.xml Pull down to refresh Only one entry appears: 5.0-rc2: mainline More recent feed entries do not appear

Reproduced on a second device as well

Yky avatar Jan 16 '19 19:01 Yky

The problem is that every entry has the same link: http://www.kernel.org We use the link (when it exists) to generate the id and so in this case all the entries end up with the same id. There is also an unique index on the column "link". We have OnConflictStrategy.IGNORE and we end up with one entry.

To solve the problem I was initially thinking of using uri with fallback to link but then I looked at the history and in the past this approach was used and it was changed here 28b0d5158c3861c5c22677bfaaca37e7f549ae73. So apparently it would cause problems. @FredJul can you comment on why the previous approach was problematic?

TelmoDiego avatar Feb 12 '19 15:02 TelmoDiego