From 6a2b230ffa133d14d8b039b6b55941c4f5b87c0f Mon Sep 17 00:00:00 2001 From: Adam French Date: Tue, 13 Jan 2026 12:42:23 +0000 Subject: [PATCH] obsidian note pls work --- backend/services/notes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/notes.go b/backend/services/notes.go index c9ee34a..6c7cd36 100644 --- a/backend/services/notes.go +++ b/backend/services/notes.go @@ -22,7 +22,7 @@ func InitNotes(config *NotesConfig) *Notes { } func (notes *Notes) ParsePath(path string) (string, error) { - if path == "" { + if path == "" || path == "/" { path = "Index.md" }