From 9e68ed0ba63856769e896523bf8616987020d168 Mon Sep 17 00:00:00 2001 From: dann-merlin Date: Wed, 18 Mar 2020 20:46:41 +0100 Subject: [PATCH] Actually set volume when reading in from config --- src/spotify.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/spotify.rs b/src/spotify.rs index b6ce1e6..b6ac2f2 100644 --- a/src/spotify.rs +++ b/src/spotify.rs @@ -269,6 +269,7 @@ impl Spotify { // acquire token for web api usage spotify.refresh_token(); + spotify.set_volume(volume); spotify }