disable netease translation by default

This commit is contained in:
jeffvli 2025-06-24 00:06:19 -07:00
parent c1330d92b2
commit b29d3e7f78

View file

@ -84,7 +84,7 @@ export async function getLyricsBySongId(songId: string): Promise<null | string>
console.error('NetEase lyrics request got an error!', e); console.error('NetEase lyrics request got an error!', e);
return null; return null;
} }
const enableTranslation = store.get('enableNeteaseTranslation', true) as boolean; const enableTranslation = store.get('enableNeteaseTranslation', false) as boolean;
const originalLrc = result.data.lrc?.lyric; const originalLrc = result.data.lrc?.lyric;
if (!enableTranslation) { if (!enableTranslation) {
return originalLrc || null; return originalLrc || null;