Explorar el Código

change tg message when send qrCode (#4623)

Aleksey Surkov hace 7 horas
padre
commit
0829f1ecd4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      web/service/tgbot.go

+ 1 - 1
web/service/tgbot.go

@@ -2411,7 +2411,7 @@ func (t *Tgbot) sendClientQRLinks(chatId int64, email string) {
 	}
 
 	// Inform user
-	t.SendMsgToTgbot(chatId, "QRCode"+":")
+	t.SendMsgToTgbot(chatId, "QRCode for client "+email+":")
 
 	// Send sub URL QR (filename: sub.png)
 	if png, err := createQR(subURL, 320); err == nil {