logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 8baee855d90530def46dc62b81e6a0cb0c315914
parent e4792ce76af3094d378a3a201ca429ae38203696
Author: Egor Kislitsyn <egor@kislitsyn.com>
Date:   Mon, 21 Sep 2020 21:47:36 +0400

Fix emails

Diffstat:

Mlib/pleroma/emails/user_email.ex4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/pleroma/emails/user_email.ex b/lib/pleroma/emails/user_email.ex @@ -198,14 +198,14 @@ defmodule Pleroma.Emails.UserEmail do if is_nil(admin_user_id) do """ <p>You requested a full backup of your Pleroma account. It's ready for download:</p> - <p><a href="#{download_url}"></a></p> + <p><a href="#{download_url}">#{download_url}</a></p> """ else admin = Pleroma.Repo.get(User, admin_user_id) """ <p>Admin @#{admin.nickname} requested a full backup of your Pleroma account. It's ready for download:</p> - <p><a href="#{download_url}"></a></p> + <p><a href="#{download_url}">#{download_url}</a></p> """ end