From a7bd3f7135e1c83a97330c7dab037b9a9c6f2ff6 Mon Sep 17 00:00:00 2001 From: Rolf Schmidt Date: Tue, 28 Jan 2020 13:48:21 +0100 Subject: [PATCH] Fixed issue #2910 - Ticket split does reference article inline images instead of copying them --- .../javascripts/app/controllers/agent_ticket_create.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/javascripts/app/controllers/agent_ticket_create.coffee b/app/assets/javascripts/app/controllers/agent_ticket_create.coffee index 11e4716f6..090be32ac 100644 --- a/app/assets/javascripts/app/controllers/agent_ticket_create.coffee +++ b/app/assets/javascripts/app/controllers/agent_ticket_create.coffee @@ -231,6 +231,7 @@ class App.TicketCreate extends App.Controller # convert non text/html from text 2 html if a.content_type.match(/\/html/) t.body = a.body + t.body = App.Utils.htmlImage2DataUrl(t.body) else t.body = App.Utils.text2html(a.body)