From 845040f9789b26536057708dcc5cdcfc0ea87dbc Mon Sep 17 00:00:00 2001 From: lunar-mining Date: Sat, 19 Mar 2022 07:38:06 +0100 Subject: [PATCH] small fix on Empty slot data * Stopped pasting "Empty" on top of "Null" --- bin/dnetview/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dnetview/src/main.rs b/bin/dnetview/src/main.rs index b3e62fef4..9f02b8f13 100644 --- a/bin/dnetview/src/main.rs +++ b/bin/dnetview/src/main.rs @@ -204,7 +204,7 @@ async fn poll(client: DNetView, model: Arc) -> Result<()> { let channel = Channel::new(msg, status); let new_slot = Slot::new( is_empty, - String::from("Empty"), + String::new(), channel, state.as_str().unwrap().to_string(), );