Browse Source

Fix chat history backlog query. Closes #748

pull/753/head
Gabe Kangas 4 years ago
parent
commit
765dd7efe2
  1. 2
      core/chat/persistence.go

2
core/chat/persistence.go

@ -109,7 +109,7 @@ func getChatModerationHistory() []models.ChatEvent { @@ -109,7 +109,7 @@ func getChatModerationHistory() []models.ChatEvent {
func getChatHistory() []models.ChatEvent {
// Get all messages sent within the past 5hrs, max 50
var query = "SELECT * FROM messages WHERE datetime(timestamp) >=datetime('now', '-5 Hour') AND visible = 1 LIMIT 50"
var query = "SELECT * FROM (SELECT * FROM messages WHERE datetime(timestamp) >=datetime('now', '-5 Hour') AND visible = 1 ORDER BY timestamp DESC LIMIT 50) ORDER BY timestamp asc"
return getChat(query)
}

Loading…
Cancel
Save