fix cache

This commit is contained in:
2026-03-07 01:08:31 +01:00
parent a755d3f1c2
commit 3fcbab5d30
+1
View File
@@ -7,6 +7,7 @@ export const StorageService = {
try {
const res = await browser.storage.session.get(key);
if (res[key]) return res[key] as TabState;
return null;
} catch { }
}
const res = await browser.storage.local.get(`session_${key}`);