Skip to content

Commit

Permalink
chore(DataProvider): remove the check for "ex.md"
Browse files Browse the repository at this point in the history
  • Loading branch information
yan42685 committed Apr 18, 2024
1 parent d0e45f5 commit e6dc534
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Clever Search",
"author": "Alex Clifton",
"description": "Helping you quickly locate the notes in your mind in the easiest way, without the need for complex search syntax to find relevant content.",
"version": "0.2.8",
"version": "0.2.9",
"minAppVersion": "0.15.0",
"fundingUrl": "https://www.buymeacoffee.com/alexclifton",
"isDesktopOnly": true
Expand Down
1 change: 0 additions & 1 deletion src/services/obsidian/user-data/data-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ export class DataProvider {
return (
this.supportedExtensions.has(FileUtil.getExtension(path)) &&
path.lastIndexOf("excalidraw.md") === -1 &&
path.lastIndexOf("ex.md") === -1 &&
(this.setting.followObsidianExcludedFiles
? this.privateApi.isNotObsidianExcludedPath(path)
: true) &&
Expand Down

0 comments on commit e6dc534

Please sign in to comment.