forked from platypush/platypush
Fixed a missing parenthesis
This commit is contained in:
parent
a783efd0d7
commit
60c9c7476e
1 changed files with 2 additions and 2 deletions
|
@ -150,10 +150,10 @@ class VideoOmxplayerPlugin(Plugin):
|
||||||
return
|
return
|
||||||
|
|
||||||
self.player.playEvent += lambda _: \
|
self.player.playEvent += lambda _: \
|
||||||
self.bus.post(VideoPlayEvent(video=self.player.get_source())
|
self.bus.post(VideoPlayEvent(video=self.player.get_source()))
|
||||||
|
|
||||||
self.player.pauseEvent += lambda _: \
|
self.player.pauseEvent += lambda _: \
|
||||||
self.bus.post(VideoPauseEvent(video=self.player.get_source())
|
self.bus.post(VideoPauseEvent(video=self.player.get_source()))
|
||||||
|
|
||||||
self.player.stopEvent += lambda _: \
|
self.player.stopEvent += lambda _: \
|
||||||
self.bus.post(VideoStopEvent())
|
self.bus.post(VideoStopEvent())
|
||||||
|
|
Loading…
Reference in a new issue