diff --git a/templates/twitch/search_results.html b/templates/twitch/search_results.html
index c1d48ad..82874df 100644
--- a/templates/twitch/search_results.html
+++ b/templates/twitch/search_results.html
@@ -43,7 +43,11 @@
{% for drop in results.drops %}
-
- {{ drop.name }} (in {{ drop.campaign.name }})
+ {% if drop.campaign and drop.campaign.twitch_id %}
+ {{ drop.name }} (in {{ drop.campaign.name }})
+ {% else %}
+ {{ drop.name }}
+ {% endif %}
{% endfor %}
@@ -53,7 +57,13 @@
{% for benefit in results.benefits %}
-
- {{ benefit.name }}
+ {% with first_drop=benefit.drops.first %}
+ {% if first_drop and first_drop.campaign and first_drop.campaign.twitch_id %}
+ {{ benefit.name }}
+ {% else %}
+ {{ benefit.name }}
+ {% endif %}
+ {% endwith %}
{% endfor %}