diff --git a/resources/lib/ReadEmbyDB.py b/resources/lib/ReadEmbyDB.py
index 061fc2f4..86bd6b68 100644
--- a/resources/lib/ReadEmbyDB.py
+++ b/resources/lib/ReadEmbyDB.py
@@ -291,9 +291,14 @@ class ReadEmbyDB():
             for item in result:
 
                 name = item['Name']
+                contentType = item['Type']
                 itemtype = item.get('CollectionType')
                 content = itemtype
 
+                if contentType == "Channel":
+                    # Ignore channel type otherwise, they get processed as mixed content
+                    continue
+
                 if itemtype is None and type in ("movies", "tvshows"):
                     # Mixed content or rich presentation is disabled
                     itemtype = type