Fix typo in playback status key retrieval
authorJacob Casper <dev@jacobcasper.com>
Fri, 13 Nov 2020 22:50:29 +0000 (16:50 -0600)
committerJacob Casper <dev@jacobcasper.com>
Fri, 13 Nov 2020 22:50:40 +0000 (16:50 -0600)
src/main.rs

index ca15fa2..800cf54 100644 (file)
@@ -55,7 +55,7 @@ fn update_map(arc_map: Arc<Mutex<HashMap<String, String>>>, 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<dyn std::error::Error>> {
             update_map(
                 spotify_match_map.clone(),
                 "playback_status",
-                match &*playback_status.as_str().unwrap_or("🔈") {
+                match &*playback_status.as_str().unwrap_or("") {
                     "Playing" => "🔊",
                     _ => "🔈",
                 },