We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14555de commit 13af993Copy full SHA for 13af993
src/context.rs
@@ -768,7 +768,6 @@ impl Context {
768
.get_config(Config::ConfiguredTrashFolder)
769
.await?
770
.unwrap_or_else(|| "<unset>".to_string());
771
-
772
let mut res = get_info();
773
774
// insert values
@@ -950,6 +949,7 @@ impl Context {
950
949
951
.to_string(),
952
);
+ res.insert("enable_realtime", self.get_config_bool(Config::EnableRealtime).await?.to_string());
953
954
let elapsed = time_elapsed(&self.creation_time);
955
res.insert("uptime", duration_to_str(elapsed));
@@ -1656,7 +1656,6 @@ mod tests {
1656
"socks5_password",
1657
"key_id",
1658
"webxdc_integration",
1659
- "iroh_secret_key",
1660
];
1661
let t = TestContext::new().await;
1662
let info = t.get_info().await.unwrap();
0 commit comments