Skip to content

Commit

Permalink
use path in failed txt not key #24
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpetro committed Jan 20, 2023
1 parent 1ec3aa0 commit cd735ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ class SmartConnectionsPlugin extends Obsidian.Plugin {
if(!requestResults) {
console.log("failed embedding: " + key);
// log failed file names to render_log
this.render_log.failed_embeddings.push(key);
this.render_log.failed_embeddings.push(meta.path);
return;
}
// if requestResults is not null
Expand Down
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": "Smart Connections",
"author": "Brian Petro",
"description": "Find links to similar notes using artificial intelligence from OpenAI.",
"version": "1.1.2",
"version": "1.1.3",
"minAppVersion": "1.1.0",
"authorUrl": "https://wfhbrian.com",
"isDesktopOnly": true
Expand Down

0 comments on commit cd735ce

Please sign in to comment.