v2 up handler

This commit is contained in:
2018-12-02 10:25:41 +01:00
parent 34f9d3bd94
commit f6859d34a1
3 changed files with 12 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
/*Generated on:Sun Dec 02 2018 10:21:23 GMT+0100 (CET)*/
/*Generated on:Sun Dec 02 2018 10:25:41 GMT+0100 (CET)*/
/*
* Dexie.js - a minimalistic wrapper for IndexedDB
* ===============================================
@@ -18290,11 +18290,14 @@ class AutomaticDispose {
console.log("self.MyRunnerSettings", self.MyRunnerSettings);
self.ADSettings().then((setting) => {
if (setting[self.MyRunnerSettings] != 'true') {
return self.ADisDB.ADisMissions.where({
let where = {
missionID: self.MissionID,
runner: self.MyRunner,
done: 'false'
}).limit(1)
}
console.log(where);
return self.ADisDB.ADisMissions.where(where).limit(1)
}
}).then((Wunsch) => {
if (Wunsch !== undefined) {