diff --git a/api/email_notification_new.go b/api/email_notification_new.go index 2ace972..fa0ffed 100644 --- a/api/email_notification_new.go +++ b/api/email_notification_new.go @@ -128,8 +128,9 @@ func emailNotificationNew(d domain, path string, commenterHex string, commentHex if p.Title == "" { p.Title, err = pageTitleUpdate(d.Domain, path) if err != nil { - logger.Errorf("cannot update/get page title to send email notification: %v", err) - return + // Not being able to update a page title isn't serious enough to skip an + // email notification. + p.Title = d.Domain } }