Fix well-known carddav redirection

This commit is contained in:
Lennart
2025-06-08 23:08:44 +02:00
parent 6ae2276035
commit d5b43b33f4

View File

@@ -55,7 +55,7 @@ pub fn make_app<AS: AddressbookStore, CS: CalendarStore, S: SubscriptionStore>(
)
.route(
"/.well-known/carddav",
any(async || Redirect::permanent("/caldav")),
any(async || Redirect::permanent("/carddav")),
);
let session_store = MemoryStore::default();