diff --git a/public/index.html b/public/index.html index 30f87103b..ad91327f8 100644 --- a/public/index.html +++ b/public/index.html @@ -2882,7 +2882,7 @@
Start new chat - Select chat + Select chats
Delete message diff --git a/server.js b/server.js index 561507a07..ce58385e4 100644 --- a/server.js +++ b/server.js @@ -942,6 +942,7 @@ app.post("/importchat", urlencodedParser, function(request, response){ new_chat[i]['name'] = ch_name; } new_chat[i]['is_user'] = item.src.is_human; + new_chat[i]['is_name'] = true; new_chat[i]['send_date'] = Date.now(); new_chat[i]['mes'] = item.text; i++;