oleeskild / obsidian-digital-garden

MIT License
1.36k stars 124 forks source link

Await the promise when deleting a file #545

Closed oleeskild closed 8 months ago

oleeskild commented 8 months ago

There has been a bug where deleting multiple files from the publication center resulted in only one file getting deleted at the time. This was caused by a 409 error from github, simply because we did the commits in parallel, because we forgot to await the actual deletion promise. This should fix that problem. Deleting files should now work as expected again.