Skip to content

Commit

Permalink
0.1.9
Browse files Browse the repository at this point in the history
- Fixed regression whereby inline suggestion filtering was not working.
  • Loading branch information
jglev committed Aug 18, 2022
1 parent 36d81cb commit ba3d741
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const getRedirectFiles = (
})
.flat();

output.filter((a) => {
output = output.filter((a) => {
if (a === undefined || a === null) {
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-redirect",
"name": "Redirect",
"version": "0.1.8",
"version": "0.1.9",
"minAppVersion": "0.14.15",
"description": "An Obsidian (https://obsidian.md) plugin for redirecting links based on YAML frontmatter.",
"author": "Jacob Levernier",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-redirect",
"version": "0.1.8",
"version": "0.1.9",
"description": "An Obsidian (https://obsidian.md) plugin for redirecting links based on YAML frontmatter.",
"main": "main.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"0.1.5": "0.14.15",
"0.1.6": "0.14.15",
"0.1.7": "0.14.15",
"0.1.8": "0.14.15"
"0.1.8": "0.14.15",
"0.1.9": "0.14.15"
}

0 comments on commit ba3d741

Please sign in to comment.