From 6ff8b36836e5337d69690f4adf359f422e2da091 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sun, 22 Nov 2020 20:59:45 -0700 Subject: [PATCH] Fix modTimestampFormat --- core/fse.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/fse.js b/core/fse.js index 5e018df7..690b9cf8 100644 --- a/core/fse.js +++ b/core/fse.js @@ -853,7 +853,11 @@ exports.FullScreenEditorModule = exports.getModule = class FullScreenEditorModul this.setHeaderText(MciViewIds.header.from, this.message.fromUserName); this.setHeaderText(MciViewIds.header.to, this.message.toUserName); this.setHeaderText(MciViewIds.header.subject, this.message.subject); - this.setHeaderText(MciViewIds.header.modTimestamp, moment(this.message.modTimestamp).format(this.client.currentTheme.helpers.getDateTimeFormat())); + + this.setHeaderText(MciViewIds.header.modTimestamp, moment(this.message.modTimestamp).format( + this.menuConfig.config.modTimestampFormat || this.client.currentTheme.helpers.getDateTimeFormat()) + ); + this.setHeaderText(MciViewIds.header.msgNum, (this.messageIndex + 1).toString()); this.setHeaderText(MciViewIds.header.msgTotal, this.messageTotal.toString());