Hey there.

I noticed a mistake in the configuration example


I changed this

notify:
  - name: NOTIFIER_NAME
    platform: kodi
    host: http://192.168.0.123

to this

notify:
  - platform: kodi
    name: NOTIFIER_NAME
    host: http://192.168.0.123
This commit is contained in:
dennisaion 2016-11-22 10:54:16 +01:00 committed by Fredrik Lindqvist
parent 553a0442fe
commit 152ca9d906

View File

@ -20,8 +20,8 @@ To add Kodi to your installation, add the following to your `configuration.yaml`
```yaml
# Example configuration.yaml entry
notify:
- name: NOTIFIER_NAME
platform: kodi
- platform: kodi
name: NOTIFIER_NAME
host: http://192.168.0.123
```