Skip to content
Snippets Groups Projects
Commit a9648076 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't publish realname when same as alias

parent 1eb4164f
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -378,7 +378,7 @@ function export_users(msgbase, realnames, all)
if(!list[data])
list[data] = [];
list[data].push(u.alias);
if(realnames)
if(realnames && u.name != u.alias)
list[data].push(u.name);
}
avatar.last_exported = new Date();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment