From 380473c825af3a177472378ee08cabd9c866472b Mon Sep 17 00:00:00 2001 From: Martin Artnik Date: Mon, 14 Jun 2021 13:25:50 +0200 Subject: [PATCH] Fixed emails for successful report file generation [SCI-5814] --- app/views/users/mailer/notification.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/users/mailer/notification.html.erb b/app/views/users/mailer/notification.html.erb index 6262a788c..526e57b44 100644 --- a/app/views/users/mailer/notification.html.erb +++ b/app/views/users/mailer/notification.html.erb @@ -21,7 +21,7 @@ <% if @notification.system_message? %> <% # We assume the system notification is clean %> <%= @notification.message.html_safe %> - <% elsif @notification.deliver? %> + <% elsif @notification.deliver? && @notification.message.match?(/data-id=('|")(\d*)('|")/) %> <%= I18n.t("notifications.deliver.download_link") %> <% # work around the problem with inserting the link of zipExport %> <% zip_id = /data-id=('|")(\d*)('|")/.match(@notification.message)[2] %>