Procházet zdrojové kódy

trying to isolate google sheets error

tags/v0.5.1.1
Shaun před 4 roky
rodič
revize
0fd19a0704
1 změnil soubory, kde provedl 6 přidání a 2 odebrání
  1. +6
    -2
      src/server/security/sheets.js

+ 6
- 2
src/server/security/sheets.js Zobrazit soubor

@@ -75,7 +75,11 @@ module.exports = {
},

update: async function () {
const records = await this.sheet.getRows();
this.onGetRows(null, records);
try {
const records = await this.sheet.getRows();
this.onGetRows(null, records);
} catch (e) {
setTimeout(this.update.bind(this), 300000);
}
}
};

Načítá se…
Zrušit
Uložit