From bc4b6895bec3225a37ae9b724c748dbcdeefc0c5 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Wed, 30 Dec 2020 12:22:44 -0800 Subject: [PATCH] Fix error message --- core/chat/persistence.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/chat/persistence.go b/core/chat/persistence.go index 04c17b7d4..d49943af9 100644 --- a/core/chat/persistence.go +++ b/core/chat/persistence.go @@ -87,7 +87,7 @@ func getChatHistory(filtered bool) []models.ChatEvent { err = rows.Scan(&id, &author, &body, &messageType, &visible, ×tamp) 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 }