Obsidian Release v1.1.15 - some plugins stopped working

Unfortunately, after updating Obsidian to version 1.1.15, the Obsidian_to_Anki plugin stopped working (https://github.com/Pseudonium/Obsidian_to_Anki ). After returning to version 1.1.9. the plugin worked fine

Contact the author of that plugins. we don’t take bug reports involving third party plugins. If the problem is within Obsidian, the plugin dev should contact us.

1 Like

The solution of the issue is here:

  1. Go to your obsidian vault folder
  2. Open /.obsidian/plugins/obsidian-to-anki-plugin/main.js with any text editor
  3. Replace line 30603
        while (abstractFile.hasOwnProperty('parent')) {

with

        while (abstractFile && abstractFile.hasOwnProperty('parent')) {
  1. Restart obsidian

Autor - [romankrru] from
github - Pseudonium/Obsidian_to_Anki/issues/407#issuecomment-1440645025

2 Likes