fix: 优化&功能

- 播放列表记忆
- 播放列表添加模式设置项
- ProxyServer优化
This commit is contained in:
lqtmcstudio
2026-02-06 17:01:45 +08:00
parent 199202de62
commit 47689f23a4
7 changed files with 270 additions and 73 deletions

View File

@@ -91,16 +91,7 @@ export class PluginSystem {
error: 'Search not implemented'
}
}
try {
return await this.plugin.musicSearch.search(query, page, limit)
} catch (e: any) {
return {
list: [],
total: 0,
allPage: 0,
error: e.message || 'Plugin search error'
}
}
return await this.plugin.musicSearch.search(query, page, limit)
}
async getLyric(id: string): Promise<any> {