aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
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');