Skip to content

Commit

Permalink
Music: make previous actually work
Browse files Browse the repository at this point in the history
  • Loading branch information
askedrelic committed Sep 30, 2011
1 parent 03af42d commit b38cf3d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions campy/plugins/music.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ def handle_message(self, campfire, room, message, speaker):
if command == 'next':
player.next_track()
elif command == 'previous':
# Double up to actually previous, not just restart curren track
player.previous_track()
player.previous_track()
elif command == 'pause':
player.pause()
Expand Down

0 comments on commit b38cf3d

Please sign in to comment.