diff --git a/templates/stream.html b/templates/stream.html
index 37d1394..3aa5ea5 100644
--- a/templates/stream.html
+++ b/templates/stream.html
@@ -8,6 +8,7 @@
{% for item in inbox_data %}
+ {% if 'actor' in item.meta %}
{% if item | has_type('Create') %}
{{ utils.display_note(item.activity.object, ui=True, meta=item.meta) }}
{% else %}
@@ -53,6 +54,7 @@
{% endif %}
+ {% endif %}
{% endif %}
{% endfor %}