This commit is contained in:
2026-04-10 14:58:46 +08:00
parent 5e2da72d88
commit e2e39cc674
3 changed files with 32 additions and 2 deletions

View File

@@ -384,7 +384,7 @@ const defaultConfig = {
prologueList: {},
needTranslate: false,
filters: {
maxAnchorCount: 100
maxAnchorCount: 99999
},
lang: 'en'
}
@@ -705,7 +705,7 @@ const handleStart = async (specificGroupIndex) => {
prologueList,
needTranslate: config.value.needTranslate, // 添加翻译开关配置
filters: {
maxAnchorCount: config.value.filters?.maxAnchorCount || 100
maxAnchorCount: config.value.filters?.maxAnchorCount !== undefined ? config.value.filters.maxAnchorCount : 100
},
rotationEnabled: config.value.rotateEnabled,
rotationIntervalMinutes: config.value.switchMinutes,