Skip to content
Snippets Groups Projects
Commit 47015a57 authored by rswindell's avatar rswindell
Browse files

Added timestamp to msg-expored user avatars to defeate dupe checking

parent 22f3805d
No related branches found
No related tags found
No related merge requests found
...@@ -387,7 +387,8 @@ function export_users(msgbase, realnames, all) ...@@ -387,7 +387,8 @@ function export_users(msgbase, realnames, all)
} }
for(var i in list) for(var i in list)
list[i].sort(); list[i].sort();
var body = "json-begin\r\n"; var body = "Timestamp: " + new Date() + "\r\n";
body += "json-begin\r\n";
body += lfexpand(JSON.stringify(list, null, 1)) + "\r\n"; body += lfexpand(JSON.stringify(list, null, 1)) + "\r\n";
body += "json-end\r\n"; body += "json-end\r\n";
body += "--- " + js.exec_file + " " + REVISION + "\r\n"; body += "--- " + js.exec_file + " " + REVISION + "\r\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment