Catch db error and show frienlier message. Closes #252
This commit is contained in:
parent
8f740c4cb6
commit
eb0ee4dd8a
@ -5,10 +5,10 @@ import (
|
||||
"os"
|
||||
"time"
|
||||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"github.com/owncast/owncast/config"
|
||||
"github.com/owncast/owncast/models"
|
||||
"github.com/owncast/owncast/utils"
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
@ -83,7 +83,9 @@ func getChatHistory() []models.ChatMessage {
|
||||
|
||||
err = rows.Scan(&id, &author, &body, &messageType, &visible, ×tamp)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
log.Debugln(err)
|
||||
log.Error("There is an problem with the chat database. Please delete chat.db and restart Owncast.")
|
||||
break
|
||||
}
|
||||
|
||||
message := models.ChatMessage{}
|
||||
|
Loading…
x
Reference in New Issue
Block a user