From 7c9da143a94f3b5529cef5704d25fa87120c313f Mon Sep 17 00:00:00 2001 From: Matteo Sammarco Date: Mon, 28 Feb 2022 18:14:30 +0100 Subject: [PATCH] fix Mylinks-Movies does not open for concatenating a string and a dict (#379) Co-authored-by: Matteo Sammarco --- specials/kodfavorites.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specials/kodfavorites.py b/specials/kodfavorites.py index f3fe0e8e..3dbc758d 100644 --- a/specials/kodfavorites.py +++ b/specials/kodfavorites.py @@ -231,7 +231,7 @@ def mostrar_perfil(item): 'i_enlace': i_enlace, 'i_perfil': i_perfil} ] it.plot += '[CR][CR]' + config.get_localized_string(70724) + ': ' + it.channel + ' ' + config.get_localized_string(60266) + ': ' + it.action - if it.extra != '': it.plot += ' Extra: ' + it.extra + if (type(it.extra) is str) and it.extra != '': it.plot += ' Extra: ' + it.extra it.plot += '[CR]Url: ' + it.url if isinstance(it.url, str) else '...' if it.date_added != '': it.plot += '[CR]' + config.get_localized_string(70469) + ': ' + it.date_added