From 57957c8957ed13f2a4910fe19ccf17d55318da73 Mon Sep 17 00:00:00 2001 From: Hans-Peter Herzog Date: Thu, 14 Jun 2018 12:35:29 +0200 Subject: [PATCH] TT#38602 Conversations: Fix the reset process to be able to reload the list properly Change-Id: I496f209c39ab815b24077b6e4578f481937d232f --- src/store/conversations.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/store/conversations.js b/src/store/conversations.js index 8eb0b2f0..ca565d14 100644 --- a/src/store/conversations.js +++ b/src/store/conversations.js @@ -141,6 +141,7 @@ export default { resetList(state) { state.items = []; state.currentPage = 0; + state.lastPage = null; }, nextPageRequesting(state) { state.nextPageState = RequestState.requesting; @@ -176,6 +177,7 @@ export default { } }, actions: { + downloadVoiceMail(context, id) { context.commit('downloadVoiceMailRequesting'); downloadVoiceMail(id).then(()=>{