Volume should be saved across restarts

This commit is contained in:
2019-01-22 17:49:18 -06:00
parent 91317b7a41
commit 8422243465
4 changed files with 13 additions and 11 deletions

View File

@@ -24,7 +24,7 @@ class audioPlayer(object):
def __init__(self):
self.is_playing = False
self.stream = None
self.vol = 100
self.vol = config.app["sound"]["volume"]
self.is_working = False
self.queue = []
self.playing_track = 0