Error during setup of component webostv in 0.104.3

Hi
I am having problems setting up my LG TV.
I am running HA on version 0.104.3 on docker.
I have this in my Configuration;

webostv:
  host: 192.168.1.5
  name: Living-Room-TV
  standby_connection: true
  turn_on_action:
    service: persistent_notification.create
    data:
      message: "Turn on action"
  customize:
    sources:
      - livetv
      - youtube

I can ping the TV from HA.
I have previously had this working on previous versons of HA.

now I get the error;

Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/setup.py", line 170, in _async_setup_component
    hass, processed_config
  File "/usr/src/homeassistant/homeassistant/components/webostv/__init__.py", line 93, in async_setup
    await asyncio.gather(*tasks)
  File "/usr/src/homeassistant/homeassistant/components/webostv/__init__.py", line 105, in async_setup_tv
    client = WebOsClient(host, config_file, standby_connection=standby_connection)
  File "/usr/local/lib/python3.7/site-packages/aiopylgtv/webos_client.py", line 59, in __init__
    self.load_key_file()
  File "/usr/local/lib/python3.7/site-packages/aiopylgtv/webos_client.py", line 85, in load_key_file
    key_dict = json.loads(raw_data)
  File "/usr/local/lib/python3.7/json/__init__.py", line 348, in loads
    return _default_decoder.decode(s)
  File "/usr/local/lib/python3.7/json/decoder.py", line 337, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "/usr/local/lib/python3.7/json/decoder.py", line 355, in raw_decode
    raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 2 column 1 (char 1)

What am I missing?

With this configuration variable set to true, did you also enable Standby+ on your TV, as stated in the documentation? On my C8, this setting is found in the General category of the settings, and it’s called Quick Start+.

This will not be the cause of your issues, but this bit makes no sense to me (note: I see it in the docs too). turn_on_action should define how your TV can be turned on. I don’t see how creating a persistent notification will accomplish that. Further down in the docs, this setting is explained correctly.