.rate limit musicbrainz

This commit is contained in:
afkarxyz
2026-04-14 06:06:12 +07:00
parent 1858fd6f12
commit 4c5bba73ce
2 changed files with 189 additions and 45 deletions
+2 -2
View File
@@ -121,7 +121,7 @@ export const DEFAULT_SETTINGS: Settings = {
createM3u8File: false,
useFirstArtistOnly: false,
useSingleGenre: false,
embedGenre: true,
embedGenre: false,
redownloadWithSuffix: false,
separator: "semicolon"
};
@@ -343,7 +343,7 @@ export async function loadSettings(): Promise<Settings> {
parsed.useSingleGenre = false;
}
if (!('embedGenre' in parsed)) {
parsed.embedGenre = true;
parsed.embedGenre = false;
}
if (!('separator' in parsed)) {
parsed.separator = "semicolon";