Fixed issue #2910 - Ticket split does reference article inline images instead of copying them

This commit is contained in:
Rolf Schmidt 2020-01-28 13:48:21 +01:00 committed by Thorsten Eckel
parent 6692869dd8
commit a7bd3f7135

View file

@ -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)