We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad8f0e7 + 6932b8a commit 7c11fcdCopy full SHA for 7c11fcd
src/notion.ts
@@ -387,7 +387,7 @@ export const getPageUrls = async (
387
}
388
const title = getPageTitle(page)
389
// Extract only matched title when search_title is specified
390
- if (search_title && title.indexOf(search_title) == -1) {
+ if (search_title && title.toLowerCase().indexOf(search_title.toLocaleLowerCase()) == -1) {
391
continue
392
393
urls.push(`・ <${page.url}|${title}>`)
0 commit comments