From 068d0d48bea089b77cb0808318102a543638c08a Mon Sep 17 00:00:00 2001 From: Kylart Date: Thu, 11 May 2017 12:10:27 +0200 Subject: [PATCH] Forgot to reset init functions as it should be --- store/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/store/index.js b/store/index.js index 55afa53..b1c14ea 100644 --- a/store/index.js +++ b/store/index.js @@ -166,9 +166,9 @@ const store = new Vuex.Store({ commit('init', data.config) dispatch('downloaderInit').catch(err => { void (err) }) - // dispatch('releasesInit').catch(err => { void (err) }) - // dispatch('seasonsInit').catch(err => { void (err) }) - // dispatch('newsInit').catch(err => { void (err) }) + dispatch('releasesInit').catch(err => { void (err) }) + dispatch('seasonsInit').catch(err => { void (err) }) + dispatch('newsInit').catch(err => { void (err) }) dispatch('localInit').catch(err => { void (err) }) dispatch('listInit').catch(err => { void (err) }) dispatch('getHistory').catch(err => { void (err) })