Skip to content

Commit

Permalink
Try to fix inconsistent relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
notZaki committed Jan 10, 2024
1 parent b0ea5db commit 4f43db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class Manager {
const bibFiles = (bibInYaml instanceof Array ? bibInYaml : [bibInYaml]);
for (let i in bibFiles) {
let bibFile = this.stripQuotes(bibFiles[i]);
bibFile = this.resolveBibFile(bibFile, rootFolder);
bibFile = this.resolveBibFile(bibFile, undefined);
this.extension.log(`Looking for file: ${bibFile}`);
this.addBibToWatcher(bibFile);
foundFiles.push(bibFile);
Expand Down

0 comments on commit 4f43db5

Please sign in to comment.