From fc3c433a21251081e1e13cdfcf02dc3edbfba127 Mon Sep 17 00:00:00 2001 From: Jonathan Springer Date: Thu, 10 Dec 2015 12:26:08 -0500 Subject: [PATCH] Fix failing situation by making default_players a list instead of a string --- openlp/core/ui/media/mediacontroller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/media/mediacontroller.py b/openlp/core/ui/media/mediacontroller.py index 2679e836e..1440c187f 100644 --- a/openlp/core/ui/media/mediacontroller.py +++ b/openlp/core/ui/media/mediacontroller.py @@ -518,7 +518,7 @@ class MediaController(RegistryMixin, OpenLPMixin, RegistryProperties): # If no player, we can't play if not used_players: return False - default_player = used_players[0] + default_player = [used_players[0]] if service_item.processor and service_item.processor != UiStrings().Automatic: # check to see if the player is usable else use the default one. if not service_item.processor.lower() in used_players: