From 62da2aeba611fdb5de1cf8b4f842ac51fa148a17 Mon Sep 17 00:00:00 2001 From: Chaiwat Suttipongsakul Date: Thu, 17 Jan 2019 18:01:11 +0000 Subject: [PATCH] check for missing actor in stream item --- templates/stream.html | 2 ++ 1 file changed, 2 insertions(+) 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 %}