From 8331c837620993aa6ffac46f006240bc1aa52150 Mon Sep 17 00:00:00 2001 From: Wolf Date: Sun, 26 Mar 2017 13:45:21 +0200 Subject: [PATCH 1/2] add some information * there is a space mising directly before link * what medium would be nice to know befoe klicking on the link (variable name probably is wrong still) --- Handler/Medium.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Handler/Medium.hs b/Handler/Medium.hs index 15fa38a..fb2bcde 100755 --- a/Handler/Medium.hs +++ b/Handler/Medium.hs @@ -93,9 +93,9 @@ postMediumR mediumId = do sendMail (userEmail owner) (userSl `T.append` " commented on your medium") [shamlet|

Hello #{userSlug owner} -

#{userSl} commented on your medium: +

#{userSl} commented on your medium {mediumTitle medium}:

#{commentContent temp} -

To follow the comment thread follow +

To follow the comment thread follow this link . From b93bf1e2ab52557e6016b64df127135fecac4941 Mon Sep 17 00:00:00 2001 From: rys ostrovid Date: Mon, 27 Mar 2017 01:49:36 +0200 Subject: [PATCH 2/2] missing antiquoter variable name was right, but you need to specify that it is a variable. --- Handler/Medium.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Handler/Medium.hs b/Handler/Medium.hs index fb2bcde..30c180c 100755 --- a/Handler/Medium.hs +++ b/Handler/Medium.hs @@ -93,7 +93,7 @@ postMediumR mediumId = do sendMail (userEmail owner) (userSl `T.append` " commented on your medium") [shamlet|

Hello #{userSlug owner} -

#{userSl} commented on your medium {mediumTitle medium}: +

#{userSl} commented on your medium #{mediumTitle medium}:

#{commentContent temp}

To follow the comment thread follow