From a3ce3ae4fa403547e3bd749fef74c7fa6e348121 Mon Sep 17 00:00:00 2001
From: Matt <mcarlton00@gmail.com>
Date: Mon, 23 Nov 2020 20:38:24 -0500
Subject: [PATCH] Fix voidless intros

---
 jellyfin_kodi/objects/actions.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jellyfin_kodi/objects/actions.py b/jellyfin_kodi/objects/actions.py
index c816af0c..0a6b7f21 100644
--- a/jellyfin_kodi/objects/actions.py
+++ b/jellyfin_kodi/objects/actions.py
@@ -131,7 +131,7 @@ class Actions(object):
                     listitem = xbmcgui.ListItem()
                     LOG.info("[ intro/%s ] %s", intro['Id'], intro['Name'])
 
-                    play = playutils.PlayUtils(intro, False, self.server_id, self.server)
+                    play = playutils.PlayUtils(intro, False, self.server_id, self.server, self.api_client)
                     play.select_source(play.get_sources())
                     self.set_listitem(intro, listitem, intro=True)
                     listitem.setPath(intro['PlaybackInfo']['Path'])