Remove IndexedDB files after removing IndexedDB database
This commit is contained in:
parent
486932048c
commit
fb670ad6b9
4 changed files with 27 additions and 4 deletions
|
@ -41,6 +41,7 @@ module.exports = {
|
|||
|
||||
close,
|
||||
removeDB,
|
||||
removeIndexedDBFiles,
|
||||
|
||||
createOrUpdateGroup,
|
||||
getGroupById,
|
||||
|
@ -319,6 +320,10 @@ async function removeDB() {
|
|||
await channels.removeDB();
|
||||
}
|
||||
|
||||
async function removeIndexedDBFiles() {
|
||||
await channels.removeIndexedDBFiles();
|
||||
}
|
||||
|
||||
// Groups
|
||||
|
||||
async function createOrUpdateGroup(data) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue