Better error handling on the assistant

This commit is contained in:
Fabio Manganiello 2019-02-05 11:26:03 +01:00
parent 96ee21dc0e
commit caa48ad056
1 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ class AssistantGoogleBackend(Backend):
self.bus.post(ResponseEvent(response_text=event.args.get('text')))
elif hasattr(EventType, 'ON_RESPONDING_STARTED') and \
event.type == EventType.ON_RESPONDING_STARTED and \
event.args.get('is_error_response'):
event.args.get('is_error_response', False) is True:
self.logger.warning('Assistant response error')
self._has_error = True
elif event.type == EventType.ON_RECOGNIZING_SPEECH_FINISHED: