Skip to content

Commit 72dfa4f

Browse files
committed
fix: use blob-dir parent as peer data location
1 parent 420035f commit 72dfa4f

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

Cargo.lock

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ tokio-util = "0.7.9"
126126
toml = "0.8"
127127
url = "2"
128128
uuid = { version = "1", features = ["serde", "v4"] }
129-
dirs = "^5.0"
130129

131130
[dev-dependencies]
132131
ansi_term = "0.12.0"

src/peer_channels.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ impl Context {
3434
.alpns(vec![GOSSIP_ALPN.to_vec()])
3535
.derp_mode(DerpMode::Default)
3636
.peers_data_path(
37-
dirs::config_dir()
38-
.context("Can't create config dir")?
39-
.join("DeltaChat")
40-
.join("peers"),
37+
self.blobdir
38+
.parent()
39+
.context("Can't get parent of blob dir")?
40+
.to_path_buf(),
4141
)
4242
.on_endpoints({
4343
let gossip_cell = self.gossip.clone();

0 commit comments

Comments
 (0)