[server] Panic instead of fatal err (#5178)

This commit is contained in:
Neeraj
2025-02-26 14:00:17 +05:30
committed by GitHub
parent 0d42cc7b68
commit c2833d11b0

View File

@@ -346,7 +346,7 @@ func (c *UserController) AddTokenAndNotify(userID int64, app ente.App, token str
return
}
emailSendErr := emailUtil.SendTemplatedEmail([]string{user.Email}, "Ente", "team@ente.io", emailCtrl.LoginSuccessSubject, emailCtrl.LoginSuccessTemplate, map[string]interface{}{
"Date": t.Now().UTC().Format("02 Jan, 2006 15:04"),
"Date": t.Now().UTC().Format("02 Jan, 2006 15:04"),
}, nil)
if emailSendErr != nil {
log.WithError(emailSendErr).Error("Failed to send email")
@@ -479,7 +479,7 @@ func (c *UserController) onVerificationSuccess(context *gin.Context, email strin
func convertStringToBytes(s string) []byte {
b, err := base64.StdEncoding.DecodeString(s)
if err != nil {
log.Fatal(err)
panic(fmt.Sprintf("failed to base64dDecode string %s", s))
}
return b
}