Traccar integration - Unable to determine type for traccar

Hello all,

I have added the traccar integration thru the /hassio-addons/addon-traccar.
I have followed the instructions, I can access it from the web and thru the curl locally.

Currently I am stuck at this error:

~ tail -f  homeassistant/home-assistant.log         
2025-01-17 15:23:22.898 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved (None)
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/components/device_tracker/legacy.py", line 258, in _async_setup_integration
    legacy_platforms = await async_extract_config(hass, config)
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/components/device_tracker/legacy.py", line 393, in async_extract_config
    raise ValueError(
        f"Unable to determine type for {platform.name}: {platform.type}"
    )
ValueError: Unable to determine type for traccar: None

My config:

➜  ~ cat  homeassistant/configuration.yaml

# Loads default set of integrations. Do not remove.
default_config:

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
device_tracker:
  - platform: traccar
    host: localhost
    port: 18682
    ssl: false
    verify_ssl: false
    username: usermail
    password: userpw

ssl: false and verify_ssl: false portion was added during the troubleshooting process, it was failing without those as well.

Any ideas would be greatly appreciated,
Thank you!

Did you manage to solve it? I’ve had the same problem for a long time.