chore: update gpui

This commit is contained in:
2026-01-14 15:00:52 +07:00
parent ac9afb1790
commit 014757cfc9
4 changed files with 87 additions and 27 deletions

View File

@@ -88,9 +88,8 @@ impl NostrRegistry {
});
// Construct the lmdb
let lmdb = cx.background_executor().block(async move {
let path = config_dir().join("nostr");
NostrLmdb::open(path)
let lmdb = cx.foreground_executor().block_on(async move {
NostrLmdb::open(config_dir().join("nostr"))
.await
.expect("Failed to initialize database")
});