This commit is contained in:
raf 2024-12-12 23:15:35 +03:00
commit 0fca6f1622
Signed by: NotAShelf
GPG key ID: AF26552424E53993

View file

@ -237,7 +237,7 @@ async fn main() -> io::Result<()> {
info!("Fetching properties: {:?}", properties);
for property in properties {
if let Some(data) = send_ipc_command("get_property", &[json!(property)]).await? {
println!("{}: {}", property, data);
println!("{property}: {data}");
}
}
}