diff --git a/addon.xml b/addon.xml
index 208004f..50a85a4 100644
--- a/addon.xml
+++ b/addon.xml
@@ -4,9 +4,9 @@
-
-
-
+
+
+ video
@@ -27,7 +27,10 @@
fb4472 (at) aon.at1.3.0: update auf neue API.
-- Bei Favoriten von älteren Versionen wird ein "Legacy" hinweis angezeigt. Solange die alte Api noch funktionert, und die Sendung dort vorhanden war, wird ein Link auf die neue Api erstellt.
+- Bei Favoriten von älteren Versionen wird ein "Legacy" hinweis angezeigt. Solange die alte Api noch funktionert, und die Sendung dort vorhanden war, wird ein Link auf die neue Api erstellt.
+1.3.1:
+- fehler mit single Threading behoben
+- Abhängigkeiten minimum Version hinzugefügt, behebt vielleicht automatische Installation
resources/icon.pngresources/fanart.png
diff --git a/changelog.txt b/changelog.txt
index 03820d9..c34fb55 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -46,4 +46,7 @@ v1.2.4:
v1.2.5:
- fix livestream category, if a stream has no epg.
v1.3.0: update to new API
-- favourites of older versions are now marked with "Legacy". As long as the old Api works and that show is available there, a link to the new API is created.
\ No newline at end of file
+- favourites of older versions are now marked with "Legacy". As long as the old Api works and that show is available there, a link to the new API is created.
+v1.3.1:
+- fix error with single threading
+- add minimum version for dependencies, maybe fixes automatic installation
\ No newline at end of file
diff --git a/resources/lib/plugin.py b/resources/lib/plugin.py
index 1a9b5a4..28c910d 100644
--- a/resources/lib/plugin.py
+++ b/resources/lib/plugin.py
@@ -171,7 +171,7 @@ def show_category(category_id):
pool.join()
else:
for brand in channels['response']['data']:
- streams.update(get_livestream(brand['channelId'], brand['title'], brand['id']))
+ streams.append(get_livestream(brand['channelId'], brand['title'], brand['id']))
addDirectoryItems(plugin.handle, streams)
else:
kodiutils.notification('ERROR GETTING LIVESTREAM INFO', 'using saved values')