This commit is contained in:
Jason Axley 2026-07-10 06:50:37 +02:00 committed by GitHub
commit c08b73f6c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 2441 additions and 304 deletions

View file

@ -177,7 +177,7 @@ class LogManager {
* @returns {string}
*/
getMostRecentCurrentDailyLogs() {
return this.currentDailyLog?.logs.slice(-5000) || ''
return this.currentDailyLog?.logs.slice(-5000) || []
}
}
module.exports = LogManager