Merge pull request #4 from Aomd/master

IT之家 匹配下标超出异常
This commit is contained in:
底层用户 2023-04-24 14:26:33 +08:00 committed by GitHub
commit 5b97cf112d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ const headers = {
// it之家特殊处理 - url
const replaceLink = (url) => {
const match = url.match(/html\/(\d+)\.htm/)[1];
const match = url.match(/[html|live]\/(\d+)\.htm/)[1];
return `https://www.ithome.com/0/${match.slice(0, 3)}/${match.slice(3)}.htm`;
};