Fixed a strange issue with play_all function

This commit is contained in:
Manuel Cortez 2019-04-30 15:31:54 -05:00
parent f834b6046e
commit 2c836f473d

View File

@ -158,7 +158,7 @@ class audioPlayer(object):
except BassError: except BassError:
pass pass
if self.playing_all == False and len(self.queue) > 0: if self.playing_all == False and len(self.queue) > 0:
self.playing_all == True self.playing_all = True
@property @property
def volume(self): def volume(self):