aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2022-06-28 00:05:44 +0100
committerLibravatar GitHub <noreply@github.com>2022-06-27 23:05:44 +0000
commit1deb48cc6cb45fea8f73b0d2a46eaec4474310b6 (patch)
treea59aa24b8dd9235b21b1c49851adeb03dcfacbba /src/stores
parentchore: turn last setting view into typescript (diff)
downloadferdium-app-1deb48cc6cb45fea8f73b0d2a46eaec4474310b6.tar.gz
ferdium-app-1deb48cc6cb45fea8f73b0d2a46eaec4474310b6.tar.zst
ferdium-app-1deb48cc6cb45fea8f73b0d2a46eaec4474310b6.zip
Disable API Server recipes updates (#382)
Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/RecipesStore.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/stores/RecipesStore.ts b/src/stores/RecipesStore.ts
index d63e46bef..00a2bb737 100644
--- a/src/stores/RecipesStore.ts
+++ b/src/stores/RecipesStore.ts
@@ -94,8 +94,9 @@ export default class RecipesStore extends TypedStore {
94 94
95 if (Object.keys(recipes).length === 0) return; 95 if (Object.keys(recipes).length === 0) return;
96 96
97 const remoteUpdates = await this.getRecipeUpdatesRequest.execute(recipes) 97 // TODO: This line needs to be uncomment once we fix the App-Server interaction problem.
98 ._promise; 98 // const remoteUpdates = await this.getRecipeUpdatesRequest.execute(recipes)._promise;
99 const remoteUpdates = [];
99 100
100 // Check for local updates 101 // Check for local updates
101 const allJsonFile = asarRecipesPath('all.json'); 102 const allJsonFile = asarRecipesPath('all.json');