fix dbbackuploader

This commit is contained in:
kwaroran
2024-07-10 18:30:33 +09:00
parent cbf80d88e1
commit 18c84e5c18

View File

@@ -1615,7 +1615,7 @@ export async function loadInternalBackup(){
}) : (await forageStorage.keys())
let internalBackups:string[] = []
for(const key of keys){
if(key.startsWith('dbbackup-')){
if(key.includes('dbbackup-')){
internalBackups.push(key)
}
}