Various AT Protocol integrations with obsidian
20
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix auth check for publish

+1 -1
+1 -1
src/commands/publishDocument.ts
··· 15 15 return; 16 16 } 17 17 18 - if (!plugin.client.loggedIn) { 18 + if (!await plugin.checkAuth()) { 19 19 new Notice("Must login to publish document."); 20 20 return; 21 21 }