Skip to content

Commit

Permalink
! Fix search view not loading result starting 2nd page via local API (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE authored Jan 19, 2023
1 parent 64d6d9b commit a89c200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/views/Search/Search.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export default defineComponent({

getNextpageLocal: async function (payload) {
try {
const { results, continuationData } = getLocalSearchContinuation(payload.options.nextPageRef)
const { results, continuationData } = await getLocalSearchContinuation(payload.options.nextPageRef)

if (results.length === 0) {
return
Expand Down

0 comments on commit a89c200

Please sign in to comment.