v0.3.49: Dedup validation — validate cached link before returning to avoid showing invalid links

This commit is contained in:
2026-05-18 01:06:28 +08:00
parent e4e3884ffc
commit 7f4ab50557
13 changed files with 1635 additions and 37 deletions

View File

@@ -828,7 +828,6 @@ const searchAllChannels = computed({
set: (val: boolean) => { configs.search_all_channels = val ? 'true' : 'false' },
})
const autoUpdateEnabled = computed({
get: () => String(configs.auto_update_enabled) === 'true',
set: (val: boolean) => { configs.auto_update_enabled = val ? 'true' : 'false' },
})