From 88d2fbd366eb920b499a3a9d74e557c297be40c9 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 25 Sep 2018 00:26:06 +0200 Subject: [PATCH] Response can't be null --- platypush/plugins/video/omxplayer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platypush/plugins/video/omxplayer.py b/platypush/plugins/video/omxplayer.py index ad0c57a4..a16408e9 100644 --- a/platypush/plugins/video/omxplayer.py +++ b/platypush/plugins/video/omxplayer.py @@ -142,6 +142,8 @@ class VideoOmxplayerPlugin(Plugin): self.player.quit() self.player = None + return {'status':'stop'} + @action def voldown(self): """ Volume down by 10% """