From 152ca9d906e7aa7160bf4d97b14bf8cf44c4dc02 Mon Sep 17 00:00:00 2001 From: dennisaion Date: Tue, 22 Nov 2016 10:54:16 +0100 Subject: [PATCH] Update (#1470) 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 --- source/_components/notify.kodi.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/notify.kodi.markdown b/source/_components/notify.kodi.markdown index a5ba6e0bacc..057a3ab86c3 100644 --- a/source/_components/notify.kodi.markdown +++ b/source/_components/notify.kodi.markdown @@ -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 ```