Skip to content

Commit

Permalink
Do not ask to press enter from CLI after quitting mpv
Browse files Browse the repository at this point in the history
Fixes: #238
  • Loading branch information
albertosottile committed Jun 18, 2019
1 parent ed95359 commit b334dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syncplay/players/mplayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def _takeLocksDown(self):
def drop(self):
self._listener.sendLine('quit')
self._takeLocksDown()
self.reactor.callFromThread(self._client.stop, True)
self.reactor.callFromThread(self._client.stop, False)

class __Listener(threading.Thread):
def __init__(self, playerController, playerPath, filePath, args):
Expand Down

0 comments on commit b334dd5

Please sign in to comment.