fix: propagate audio settings from local storage and add compressor feedback

This commit is contained in:
Timo
2026-06-13 04:48:25 +02:00
parent 6ba5e1b10b
commit 10fdaa23fc
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1821,7 +1821,7 @@ async function handleAsyncMessage(message, sender, sendResponse) {
}
chrome.storage.onChanged.addListener(async (changes, area) => {
if (area !== 'sync' || !changes.audioSettings) return;
if (area !== 'local' || !changes.audioSettings) return;
await ensureState();
if (!currentTabId) return;