From f0405de2e4401031c97e89880065fc82cb56c8d0 Mon Sep 17 00:00:00 2001 From: Hannes Mannerheim Date: Mon, 6 Jul 2015 10:36:25 +0200 Subject: [PATCH] make sure all activity notices get proper design --- js/dom-functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/dom-functions.js b/js/dom-functions.js index ef99ee7..a91d7dc 100644 --- a/js/dom-functions.js +++ b/js/dom-functions.js @@ -1802,7 +1802,7 @@ function addToFeed(feed, after, extraClasses, isReply) { if($('#q-' + obj.id).length == 0) { // activity get special design - if(obj.source == 'activity') { + if(obj.source == 'activity' || obj.is_activity === true) { var queetTime = parseTwitterDate(obj.created_at); var queetHtml = '
' + $.trim(obj.statusnet_html) + '
';