mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-30 22:46:17 +02:00
Fix real names during message save
This commit is contained in:
parent
013c088651
commit
da91bf0191
1 changed files with 1 additions and 1 deletions
|
@ -329,7 +329,7 @@ exports.FullScreenEditorModule = exports.getModule = class FullScreenEditorModul
|
|||
const msgOpts = {
|
||||
areaTag : this.messageAreaTag,
|
||||
toUserName : headerValues.to,
|
||||
fromUserName : this.client.user.username,
|
||||
fromUserName : this.client.user.getProperty(UserProps.RealName) || this.client.user.username,
|
||||
subject : headerValues.subject,
|
||||
// :TODO: don't hard code 1 here:
|
||||
message : this.viewControllers.body.getView(MciViewIds.body.message).getData( { forceLineTerms : this.replyIsAnsi } ),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue