Rumorz display bugfix

Updates rumorz module to display the N latest rumors, rather than the first N rumors.
This commit is contained in:
Parker J. Banks 2023-05-21 12:09:54 -06:00 committed by GitHub
parent 78af6fa522
commit 8d6de56e91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ exports.getModule = class RumorzModule extends MenuModule {
StatLog.getSystemLogEntries(
SystemLogKeys.UserAddedRumorz,
StatLog.Order.Timestamp,
StatLog.Order.TimestampDesc,
(err, entries) => {
return callback(err, entriesView, entries);
}