Skip to content

Commit 804d4c9

Browse files
author
Sergei Orlov
committed
🐛 Fix fetching database recursively
It left the loop after the first after the first iteration because I put return in the wrong place 😅 References #4
1 parent 98fd09e commit 804d4c9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/notion-api/get-pages.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ exports.getPages = async ({ token, databaseId, notionVersion = "2021-05-13" }, r
2727
Authorization: `Bearer ${token}`,
2828
},
2929
}).then((res) => res.json())
30-
console.log(result.next_cursor, result.results.length)
3130

3231
startCursor = result.next_cursor
3332
hasMore = result.has_more
@@ -40,7 +39,7 @@ exports.getPages = async ({ token, databaseId, notionVersion = "2021-05-13" }, r
4039
} catch (e) {
4140
reporter.panic(errorMessage)
4241
}
43-
44-
return pages
4542
}
43+
44+
return pages
4645
}

0 commit comments

Comments
 (0)