We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43d7b69 commit 8c80a8cCopy full SHA for 8c80a8c
src/routes/guides/upgrade/index.tsx
@@ -88,7 +88,11 @@ export default function Upgrade() {
88
const findSuitedPlugin = (novel: OldNovelInfo) => {
89
let novelSiteUrl;
90
try {
91
- novelSiteUrl = new URL(novel.sourceUrl);
+ const url = novel.sourceUrl.replace(
92
+ "https://www.wuxiap.com/",
93
+ "https://www.wuxiabox.com/"
94
+ );
95
+ novelSiteUrl = new URL(url);
96
} catch {
97
return undefined;
98
}
0 commit comments