aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/RecipesStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-10-25 11:52:30 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-10-25 11:52:30 +0200
commitca74c830e3fda49ec8dffbc68af069621865e228 (patch)
tree4dbe6c763fea423dc743eb3220754cd2be8f003f /src/stores/RecipesStore.js
parentre-reset environment variables (diff)
parentMerge pull request #108 from meetfranz/develop (diff)
downloadferdium-app-ca74c830e3fda49ec8dffbc68af069621865e228.tar.gz
ferdium-app-ca74c830e3fda49ec8dffbc68af069621865e228.tar.zst
ferdium-app-ca74c830e3fda49ec8dffbc68af069621865e228.zip
Merge branch 'master' into chore/travis-setup
Diffstat (limited to 'src/stores/RecipesStore.js')
-rw-r--r--src/stores/RecipesStore.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stores/RecipesStore.js b/src/stores/RecipesStore.js
index cdc274685..67fee1d50 100644
--- a/src/stores/RecipesStore.js
+++ b/src/stores/RecipesStore.js
@@ -65,6 +65,10 @@ export default class RecipesStore extends Store {
65 @action async _update() { 65 @action async _update() {
66 const recipeIds = this.recipeIdForServices; 66 const recipeIds = this.recipeIdForServices;
67 const recipes = {}; 67 const recipes = {};
68
69 // Hackfix, reference this.all to fetch services
70 console.debug(`Check Recipe updates for ${this.all.map(recipe => recipe.id)}`);
71
68 recipeIds.forEach((r) => { 72 recipeIds.forEach((r) => {
69 const recipe = this.one(r); 73 const recipe = this.one(r);
70 recipes[r] = recipe.version; 74 recipes[r] = recipe.version;