From 8c484754c5e57205d5dad27a22bb503f71b69311 Mon Sep 17 00:00:00 2001
From: Daniel Tran <d.tran@adito.de>
Date: Tue, 18 Feb 2020 10:57:38 +0000
Subject: [PATCH] #1046801 - Fixed HTML in report description.

---
 process/Organisation_lib/process.js | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/process/Organisation_lib/process.js b/process/Organisation_lib/process.js
index 187622e897d..cc8c3aa4476 100644
--- a/process/Organisation_lib/process.js
+++ b/process/Organisation_lib/process.js
@@ -155,10 +155,7 @@ OrgUtils.openOrgReport = function(pOrgId)
     {
         row[0] = datetime.toDate(row[0], dateFormat);
         // convert html to text
-        if (row[1] == $KeywordRegistry.activityCategory$mail())
-        {
-            row[4] = text.html2text(row[4]);
-        }
+        row[4] = text.html2text(row[4]);
         
         row[1] = KeywordUtils.getViewValue($KeywordRegistry.activityCategory(), row[1]);
         _joinArrayVals(row, 2, 2);
-- 
GitLab