From 67b8e7219de53f38eb99e3720f5adfbb9fb8b92d Mon Sep 17 00:00:00 2001 From: Believethehype Date: Sun, 9 Apr 2023 20:27:13 +0200 Subject: [PATCH] Update waitforinvoice.go --- waitforinvoice.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waitforinvoice.go b/waitforinvoice.go index 338f71c..a90abde 100644 --- a/waitforinvoice.go +++ b/waitforinvoice.go @@ -182,14 +182,14 @@ func WaitForInvoicePaid(payvalues LNURLPayValuesCustom, params *Params) { if params.Npub != "" && params.NotifyZapComment && payvalues.Comment != "" { if payvalues.Note != "" { - go sendMessage(params.Npub, "Received Zap from "+payvalues.Sender+" with amount: "+strconv.FormatInt(amount, 10)+" "+satsr+" ⚡️ for note "+payvalues.Note+". Comment: "+payvalues.Comment) + go sendMessage(params.Npub, "Received Zap from "+payvalues.Sender+" with amount: "+strconv.FormatInt(amount, 10)+" "+satsr+" ⚡️ for note: "+payvalues.Note+" Comment: "+payvalues.Comment) } else { go sendMessage(params.Npub, "Received Profile Zap from "+payvalues.Sender+" with amount: "+strconv.FormatInt(amount, 10)+" "+satsr+" ⚡️. Comment: "+payvalues.Comment) } } else if params.Npub != "" && params.NotifyZaps { if payvalues.Note != "" { - go sendMessage(params.Npub, "Received Zap from "+payvalues.Sender+" with amount: "+strconv.FormatInt(amount, 10)+" "+satsr+" ⚡️ for note "+payvalues.Note+".") + go sendMessage(params.Npub, "Received Zap from "+payvalues.Sender+" with amount: "+strconv.FormatInt(amount, 10)+" "+satsr+" ⚡️ for note: "+payvalues.Note) } else { go sendMessage(params.Npub, "Received Profile Zap from "+payvalues.Sender+" with amount: "+strconv.FormatInt(amount, 10)+" "+satsr+" ⚡️.")