summary history branches tags files
commit:30de5c7cdb8e7bc82d5556298720dbf108472b7f
author:Trevor Bentley
committer:Trevor Bentley
date:Wed Aug 2 12:25:08 2017 +0200
parents:7310fd9602f7ac37c170094447d525a98599bb30
Handle new error code from fruitbasket
diff --git a/README.md b/README.md
line changes: +1/-1
index 754280a..a6044db
--- a/README.md
+++ b/README.md
@@ -72,7 +72,7 @@ connectr's configuration is read from a regular INI file with these sections:
 * secret - Spotify web application's Client Secret (string)
 
 #### [presets]
-* <preset name< - Key name is the display name of a playable preset, the value must be a Spotify URI to play. (string)
+* <preset name> - Key name is the display name of a playable preset, the value must be a Spotify URI to play. (string)
 
 _ex: `Bakesale = spotify:album:70XjdLKH7HHsFVWoQipP0T` will show as 'Bakesale' in the menu, and will play the specified Sebadoh album when clicked._
 

diff --git a/src/osx/mod.rs b/src/osx/mod.rs
line changes: +1/-1
index 2a9753b..ffbc320
--- a/src/osx/mod.rs
+++ b/src/osx/mod.rs
@@ -194,7 +194,7 @@ impl TStatusBar for OSXStatusBar {
             true => fruitbasket::RunPeriod::Forever,
             _ => fruitbasket::RunPeriod::Once,
         };
-        self.app.run(period);
+        let _ = self.app.run(period);
     }
 }