summaryrefslogtreecommitdiff
path: root/guile
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-07-01 18:20:51 +0300
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-07-02 00:06:56 +0300
commitc6fff6a281c3886c5a0acf6c87fdc01bea46a8ae (patch)
treea081158e756f9d13e1f18ffe9367fcaf8ef77f2f /guile
parent2acc1c2271e87d43029405e9fbdd25727d44b3b7 (diff)
all: update for API changes (config etc.)
Use the new & improved APIs.
Diffstat (limited to 'guile')
-rw-r--r--guile/mu-guile.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/guile/mu-guile.cc b/guile/mu-guile.cc
index 4a295d1..d311036 100644
--- a/guile/mu-guile.cc
+++ b/guile/mu-guile.cc
@@ -88,9 +88,9 @@ mu_guile_init_instance(const std::string& muhome) try {
StoreSingleton.emplace(std::move(store.value()));
g_debug("mu-guile: opened store @ %s (n=%zu); maildir: %s",
- StoreSingleton->properties().database_path.c_str(),
+ StoreSingleton->path().c_str(),
StoreSingleton->size(),
- StoreSingleton->properties().root_maildir.c_str());
+ StoreSingleton->root_maildir().c_str());
return true;