From 6d3ac36bd8cf04e1357e6853a059692e42089288 Mon Sep 17 00:00:00 2001 From: Jacob Casper Date: Fri, 13 Nov 2020 16:50:29 -0600 Subject: [PATCH] Fix typo in playback status key retrieval --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index ca15fa2..800cf54 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,7 +55,7 @@ fn update_map(arc_map: Arc>>, key: &str, val: &str .arg("-name") .arg(format!( "[{playback_status} {title} - {artist}] | ✉ {unread_count} | {date_time}", - playback_status = map.get("playback-status").unwrap_or(&String::from("🔈")), + playback_status = map.get("playback_status").unwrap_or(&String::from("🔈")), title = map.get("title").unwrap_or(&String::from("")), artist = map.get("artist").unwrap_or(&String::from("")), unread_count = map.get("unread_count").unwrap_or(&String::from("?")), @@ -125,7 +125,7 @@ fn main() -> Result<(), Box> { update_map( spotify_match_map.clone(), "playback_status", - match &*playback_status.as_str().unwrap_or("🔈") { + match &*playback_status.as_str().unwrap_or("") { "Playing" => "🔊", _ => "🔈", }, -- 2.20.1