From 47015a577ac9601edcc945c4548c063bca34344b Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Thu, 25 Jan 2018 10:13:38 +0000
Subject: [PATCH] Added timestamp to msg-expored user avatars to defeate dupe
 checking

---
 exec/avatars.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/exec/avatars.js b/exec/avatars.js
index 6d3a0346e0..60a3ce859b 100644
--- a/exec/avatars.js
+++ b/exec/avatars.js
@@ -387,7 +387,8 @@ function export_users(msgbase, realnames, all)
 	}
 	for(var i in list)
 		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 += "json-end\r\n";
 	body += "--- " + js.exec_file + " " + REVISION + "\r\n";
-- 
GitLab