mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
Fix error message
This commit is contained in:
parent
68f481d8be
commit
bc4b6895be
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue