Fix Ada API access

This commit is contained in:
Pascal Vizeli
2019-11-23 19:14:45 +01:00
parent 9da1279506
commit d031079ce0
3 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 0.8
- Fix API url for access to Home Assistant
## 0.7
- Add missing options

View File

@@ -1,6 +1,6 @@
{
"name": "Hey Ada!",
"version": "0.7",
"version": "0.8",
"slug": "ada",
"description": "Home Assistant featured voice assist",
"url": "https://home-assistant.io/addons/ada/",

View File

@@ -3,4 +3,4 @@
STT=$(bashio::config 'stt')
TTS=$(bashio::config 'tts')
exec python3 -m ada --url "http://hassio/homeassistant" --key "$HASSIO_TOKEN" --stt "$STT" --tts "$TTS"
exec python3 -m ada --url "http://hassio/homeassistant/api" --key "$HASSIO_TOKEN" --stt "$STT" --tts "$TTS"