diff --git a/source/_includes/podcast/other-episodes.html.twig b/source/_includes/podcast/other-episodes.html.twig index 1a6e2731..ab609f0e 100644 --- a/source/_includes/podcast/other-episodes.html.twig +++ b/source/_includes/podcast/other-episodes.html.twig @@ -1,7 +1,7 @@ {% set other_episodes = [] %} {% for episode in all_episodes %} - {% if episode.guests|first is same as(guest) and episode.topic is not same as(topic) %} + {% if guest in episode.guests and episode.topic is not same as topic %} {% set other_episodes = other_episodes|merge([episode]) %} {% endif %} {% endfor %}