We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e4dcd2 commit afcf1f0Copy full SHA for afcf1f0
app/back-end/builddata.json
@@ -1,4 +1,4 @@
1
{
2
"version": "0.47.0",
3
- "build": 17299
+ "build": 17302
4
}
app/back-end/helpers/updates.helper.js
@@ -11,7 +11,7 @@ class UpdatesHelper {
11
12
13
retrieve () {
14
- if (this.forceDownload) {
+ if (this.forceDownload || !fs.existsSync(this.filePath)) {
15
this.download();
16
} else {
17
this.readExistingData();
@@ -46,8 +46,6 @@ class UpdatesHelper {
46
if (fs.existsSync(this.filePath)) {
47
let body = FileHelper.readFileSync(this.filePath, 'utf8');
48
this.handleResponse(body, false);
49
- } else {
50
- this.sendError();
51
52
53
0 commit comments