ソースを参照

trying to isolate google sheets error

tags/v0.5.1.1
Shaun 4年前
コミット
0fd19a0704
1個のファイルの変更6行の追加2行の削除
  1. +6
    -2
      src/server/security/sheets.js

+ 6
- 2
src/server/security/sheets.js ファイルの表示

@@ -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);
}
}
};

読み込み中…
キャンセル
保存