Conversation
The site moved from novelarrow.com to novelping.com with a new platform (Next.js + api-web endpoints replaced by an Express frontend): listings now live under /sort/updates, search under /search, novels under /book/<slug> with chapters served by the /ajax/chapter-archive endpoint, and chapter text in #chr-content. Bump major version: replacing the site/domain behavior is the breaking case named in AGENTS.md. Closes lnreader#2572 Co-Authored-By: Muse Spark <ai-agent>
RibatTRW
marked this pull request as draft
September 25, 2026 12:07
Cloudflare serves UA-less requests a challenge page that parses to zero novels, which fails the CI live check on runner egress IPs. Follow the sibling-plugin convention (e.g. readfrom) with a Chrome User-Agent plus Referer and Accept-Language on all fetches. Related to lnreader#2572 Co-Authored-By: Muse Spark <ai-agent>
|
…chapter errors Address review findings: existing library entries keep novel/<slug> paths from the previous site, so derive the slug from either the old novel/<slug> or the new book/<slug> form and always request the new route, returning canonical book/<slug> novel and chapter paths. Accept old chapter/<slug>/<id> chapter paths the same way. Also let chapter fetch errors propagate instead of converting them into a fake empty result. Related to lnreader#2572 Co-Authored-By: Muse Spark <ai-agent>
Route every fetch through a helper that throws on non-2xx carrying the HTTP status, so a refusal surfaces as an error the live check classifies INCONCLUSIVE (the documented runner-block handling) instead of parsing into a false empty-result FAIL. Related to lnreader#2572 Co-Authored-By: Muse Spark <ai-agent>
RibatTRW
marked this pull request as ready for review
September 25, 2026 12:49
RibatTRW
marked this pull request as draft
September 25, 2026 12:50
RibatTRW
marked this pull request as ready for review
September 25, 2026 13:12
…and Unknown status Single-source the site URL in one module const used by both the class site and the Referer header. Default unknown novel statuses to NovelStatus.Unknown instead of Completed. Record the verified chapter-archive oldest-first ordering and the verified-sufficient single-meta author/genre lookups. Inline the dead novelId alias, drop the stale double-slash comment, and collapse the chapter-path canonicalization to one replace. Related to lnreader#2572 Co-Authored-By: Muse Spark <ai-agent>
RibatTRW
marked this pull request as draft
September 25, 2026 13:23
RibatTRW
marked this pull request as ready for review
September 25, 2026 13:27
RibatTRW
marked this pull request as draft
September 25, 2026 13:28
RibatTRW
marked this pull request as ready for review
September 25, 2026 13:48
|
Want your agent to iterate on Greptile's feedback? Try greploops. |
This branch has not been deployed
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.
Closes #2572
What changed
The site moved from
novelarrow.comtonovelping.comon a new platform, so the plugin was rewritten for the new site.site:novelarrow.com->novelping.com/novels/latest->/sort/updates?page=N/novels/search->/search?keyword=...&page=N/novel/<slug>->/book/<slug>, chapters from/ajax/chapter-archive?novelId=<slug>chapter/<slug>/<id>->book/<slug>/<chapter-id>, text from#chr-contentwith ad slots strippednovel/<slug>,chapter/<slug>/<id>) still resolve and map to the new routes1.0.1->2.0.0(a site/domain change is the breaking case AGENTS.md names)Verification
check:plugin4/4 PASS locally;prettier --check,eslintandbuild:compileclean.book/shadow-slave, novel detail returns 3198 chapters, chapter 1 returns 11,325 characters of prose.INCONCLUSIVE - HTTP 403because novelping refuses GitHub's runner IPs at the HTTP layer; the same code returns 200 elsewhere. No hard failure.Caveats
novelarrow.comstill serves the old site from some networks; the issue reports the move to novelping.com, which serves the same library.AI-authored (Co-Authored-By trailer in the commit).