In the RSS feed for an individual manga, the feed reports itself as:
Instead, atom link should be:
This causes some readers to fetch the latest releases feed, instead of the individual manga feed.
Code:
<atom:link href="https://mangadex.org/rss/[rss user key?]" rel="self" type="application/rss+xml" />
<title>MangaDex RSS</title>
<link>https://mangadex.org/</link>
<description>The latest MangaDex releases</description>
Instead, atom link should be:
Code:
<atom:link href="https://mangadex.org/rss/[rss user key?]/manga_id/[manga id]?h=0" rel="self" type="application/rss+xml" />
This causes some readers to fetch the latest releases feed, instead of the individual manga feed.