Closed g3rb3n closed 5 years ago
Changed constructs like:
def shuffle_on(self): if self.spotify: self.spotify.shuffle(True)
To
def shuffle_on(self): if not self.spotify: self.speak_dialog('NotConnected') return self.spotify.shuffle(True)
Can you re-open this to the 18.08 branch.
Sure no problem.
Changed constructs like:
To