diff --git a/client/store/libraries.js b/client/store/libraries.js index a2e34d78..15a9fa36 100644 --- a/client/store/libraries.js +++ b/client/store/libraries.js @@ -70,8 +70,8 @@ export const actions = { }, loadFolders({ state, commit }) { if (state.folders.length) { - var lastCheck = Date.now() - state.folderLastUpdate - if (lastCheck < 1000 * 60 * 10) { // 10 minutes + const lastCheck = Date.now() - state.folderLastUpdate + if (lastCheck < 1000 * 5) { // 5 seconds // Folders up to date return state.folders }