Merge pull request #67 from Kataick/flx-douyin-url

fix(douyin): remove encodeURIComponent from url
This commit is contained in:
底层用户
2024-07-08 15:10:18 +08:00
committed by GitHub

View File

@@ -54,8 +54,8 @@ const getList = async (noCache: boolean) => {
title: v.word,
timestamp: getTime(v.event_time),
hot: v.hot_value,
url: `https://www.douyin.com/hot/${encodeURIComponent(v.sentence_id)}`,
mobileUrl: `https://www.douyin.com/hot/${encodeURIComponent(v.sentence_id)}`,
url: `https://www.douyin.com/hot/${v.sentence_id}`,
mobileUrl: `https://www.douyin.com/hot/${v.sentence_id}`,
})),
};
};