mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-22 20:13:36 +00:00
Fix
This commit is contained in:
@@ -7,7 +7,7 @@ import {
|
||||
|
||||
const fallbackName = (key: string) => `idbfallback::${key}`;
|
||||
|
||||
let idbAvailable = !!window.indexedDB;
|
||||
let idbAvailable = window ? !!window.indexedDB : true;
|
||||
|
||||
if (idbAvailable) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user