From 43428be8ea5002903a38f26b651ada1ccfb17fde Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Thu, 24 Jun 2021 14:55:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E2=80=94=20Fix=20mail=20signatu?= =?UTF-8?q?re=20separator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG | 1 + themes/default/templates/partial/mail.js.ep | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 6b30d56..66d76ae 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,6 +7,7 @@ Revision history for Lufi - 🐛 Fix `Notification not defined` in Duckduckgo browser (Fix #224 again) - ✨ Add `disable_mail_sending` config parameter - 🌐 Update translations + - 🐛 Fix mail signature separator 0.05.13 2021-01-28 - 🐛 Fix latest git tag improperly fetched diff --git a/themes/default/templates/partial/mail.js.ep b/themes/default/templates/partial/mail.js.ep index 92e5c94..226cdc3 100644 --- a/themes/default/templates/partial/mail.js.ep +++ b/themes/default/templates/partial/mail.js.ep @@ -45,7 +45,7 @@ function populateBody() { } }); - text = text+"\n--\n<%= l('Share your files in total privacy on %1', url_for('/')->to_abs) %>"; + text = text+"\n-- \n<%= l('Share your files in total privacy on %1', url_for('/')->to_abs) %>"; tArea = document.getElementById('body').value = text; updateMailtoLink(); }