v2 up iajova93ti0g9sg

This commit is contained in:
2018-12-02 10:49:02 +01:00
parent 2518b509b8
commit 0af304b058
3 changed files with 14 additions and 10 deletions

12
dist/autoloaderV2.js vendored
View File

@@ -1,4 +1,4 @@
/*Generated on:Sun Dec 02 2018 10:45:48 GMT+0100 (CET)*/
/*Generated on:Sun Dec 02 2018 10:49:01 GMT+0100 (CET)*/
/*
* Dexie.js - a minimalistic wrapper for IndexedDB
* ===============================================
@@ -18192,10 +18192,12 @@ class AutomaticDispose {
RemoveMissionsFromQueue(MissionID) {
const self = this;
return self.ADisDB.ADisMissions.where({
missionID: MissionID
}).delete().catch((err) => {
console.error(err)
return self.ADisDB.transaction('rw', [self.ADisDB.ADisMissions], () => {
return self.ADisDB.ADisMissions.where({
missionID: MissionID
}).delete().catch((err) => {
console.error(err)
})
})
}