Fix error message

This commit is contained in:
Gabe Kangas 2020-12-30 12:22:44 -08:00
parent 68f481d8be
commit bc4b6895be

View file

@ -87,7 +87,7 @@ func getChatHistory(filtered bool) []models.ChatEvent {
err = rows.Scan(&id, &author, &body, &messageType, &visible, &timestamp)
if err != nil {
log.Debugln(err)
log.Error("There is a problem with the chat database. Please delete chat.db and restart Owncast.")
log.Error("There is a problem with the chat database. Restore a backup of owncast.db or remove it and start over.")
break
}