修复播放页500错误

This commit is contained in:
mtvpls
2025-12-03 20:21:44 +08:00
parent 4e05c7bcaa
commit a2b7dff392
9 changed files with 125 additions and 72 deletions

View File

@@ -11,6 +11,19 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: "200.1.0",
date: "2025-12-03",
added: [
],
changed: [
"评论抓取功能更改为懒加载",
"评论抓取功能增加开关,默认为关闭",
],
fixed: [
"修复播放页500错误"
]
},
{
version: "200.0.0",
date: "2025-12-02",
added: [

View File

@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '200.0.0';
const CURRENT_VERSION = '200.1.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };