fix(douyin): remove encodeURIComponent from url

This commit is contained in:
Kataick
2024-07-06 13:24:54 +08:00
parent 62a8880ae4
commit fd3d911b04

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}`,
})),
};
};