diff --git a/mycroft/messagebus/api.py b/mycroft/messagebus/api.py index d9eff99a7c89..8cfd0b64225b 100644 --- a/mycroft/messagebus/api.py +++ b/mycroft/messagebus/api.py @@ -28,6 +28,7 @@ def _wait_response(self, timeout): self.waiting = False def send(self, response_type=None, timeout=10): + self.response = Message(None, None, None) if response_type is None: response_type = self.query_type + ".reply" self.emitter.on(response_type, self._end_wait)