Fixed the backlog being sent in reverse order.

This commit is contained in:
flash 2023-02-10 07:18:38 +01:00
parent c21605cf3b
commit c291ef178d
1 changed files with 2 additions and 0 deletions

View File

@ -112,6 +112,8 @@ namespace SharpChat.EventStorage {
Logger.Write(ex);
}
events.Reverse();
return events;
}