feedbin / support

83 stars 11 forks source link

Feed not updating: http://lwkd.info #586

Closed ksuther closed 6 years ago

ksuther commented 6 years ago

Feedbin is showing the last update as March 4 even though there have been multiple updates since then. Feed and headers are attached to the issue.

headers.txt feed.txt

benubois commented 6 years ago

Looks like the site is mistakenly using the same id for every entry: <id>http://lwkd.info/2018/update</id>

The id is used to determine uniqueness, so all the entries look identical.

Looks like they're using Jekyll as a generator. I use this for Jekyll RSS templates:

<id>{{ post.id }}</id>
ksuther commented 6 years ago

Thank you for checking this!