From 32f57ae1c19e99372b635b89a1164344cc93d211 Mon Sep 17 00:00:00 2001 From: Preston Date: Mon, 11 Jan 2021 11:49:58 -0500 Subject: [PATCH] Fix search continuation when using cached results --- src/renderer/views/Search/Search.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/renderer/views/Search/Search.js b/src/renderer/views/Search/Search.js index 2f18ec13..c0328929 100644 --- a/src/renderer/views/Search/Search.js +++ b/src/renderer/views/Search/Search.js @@ -179,7 +179,7 @@ export default Vue.extend({ query: payload.query, data: this.shownResults, searchSettings: this.searchSettings, - nextPageRef: result.nextpageRef + nextPageRef: result.continuation } this.$store.commit('addToSessionSearchHistory', historyPayload) @@ -200,7 +200,6 @@ export default Vue.extend({ this.performSearchInvidious(payload) } else { this.isLoading = false - // TODO: Show toast with error message } }) },