Okay, here is all the lines I could find in the log (can’t remember what level I have it set to). I have removed everything I could see as unsafe to share
2019-06-19 17:22:05 DEBUG (MainThread) [homeassistant.components.websocket_api.http.connection.####] Received {'type': 'call_service', 'domain': 'notify', 'service': 'mobile_app_ABCD_phone', 'service_data': {'message': 'test'}, 'id': 29}
2019-06-19 17:22:05 DEBUG (MainThread) [homeassistant.core] Bus:Handling <Event call_service[L]: domain=notify, service=mobile_app_ABCD_phone, service_data=message=test>
2019-06-19 17:22:05 DEBUG (MainThread) [homeassistant.components.websocket_api.http.connection.####] Sending {'id': 2, 'type': 'event', 'event': {'event_type': 'call_service', 'data': {'domain': 'notify', 'service': 'mobile_app_ABCD_phone', 'service_data': {'message': 'test'}}, 'origin': 'LOCAL', 'time_fired': datetime.datetime(2019, 6, 19, 21, 22, 5, 278489, tzinfo=<UTC>), 'context': {'id': '#############', 'parent_id': None, 'user_id': '###############'}}}
2019-06-19 17:22:05 DEBUG (MainThread) [homeassistant.components.http.view] Serving /api/webhook/################ to X.X.X.X (auth: True)
2019-06-19 17:22:06 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.####] 0, message='Attempt to decode JSON with unexpected mimetype: '
Traceback (most recent call last):
File "/usr/src/app/homeassistant/components/websocket_api/commands.py", line 121, in handle_call_service
connection.context(msg))
File "/usr/src/app/homeassistant/core.py", line 1150, in async_call
self._execute_service(handler, service_call))
File "/usr/src/app/homeassistant/core.py", line 1172, in _execute_service
await handler.func(service_call)
File "/usr/src/app/homeassistant/components/notify/__init__.py", line 112, in async_notify_message
await notify_service.async_send_message(**kwargs)
File "/usr/src/app/homeassistant/components/mobile_app/notify.py", line 119, in async_send_message
result = await response.json()
File "/usr/local/lib/python3.7/site-packages/aiohttp/client_reqrep.py", line 1027, in json
headers=self.headers)
aiohttp.client_exceptions.ContentTypeError: 0, message='Attempt to decode JSON with unexpected mimetype: '
2019-06-19 17:22:06 DEBUG (MainThread) [homeassistant.components.websocket_api.http.connection.####] Sending {'id': 29, 'type': 'result', 'success': False, 'error': {'code': 'unknown_error', 'message': "0, message='Attempt to decode JSON with unexpected mimetype: '"}}
I honestly don’t see much more than what the traceback already showed.
Hopefully you or @Ionut can get something more out of it.
If not, I think I might have to debug the app and pull the log for @Ionut.
Thanks again!
DeadEnd