mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 23:46:14 -04:00
fixed reconnect
This commit is contained in:
parent
16e4fa9959
commit
18f90866ae
1 changed files with 18 additions and 15 deletions
|
@ -808,23 +808,26 @@ function handleClientReady(client, message)
|
||||||
clientVars.userName = authorName;
|
clientVars.userName = authorName;
|
||||||
}
|
}
|
||||||
|
|
||||||
//This is a reconnect, so we don't have to send the client the ClientVars again
|
if(sessioninfos[client.id] !== undefined)
|
||||||
if(message.reconnect == true)
|
|
||||||
{
|
{
|
||||||
//Save the revision in sessioninfos, we take the revision from the info the client send to us
|
//This is a reconnect, so we don't have to send the client the ClientVars again
|
||||||
sessioninfos[client.id].rev = message.client_rev;
|
if(message.reconnect == true)
|
||||||
|
{
|
||||||
|
//Save the revision in sessioninfos, we take the revision from the info the client send to us
|
||||||
|
sessioninfos[client.id].rev = message.client_rev;
|
||||||
|
}
|
||||||
|
//This is a normal first connect
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//Send the clientVars to the Client
|
||||||
|
client.json.send(clientVars);
|
||||||
|
//Save the revision in sessioninfos
|
||||||
|
sessioninfos[client.id].rev = pad.getHeadRevisionNumber();
|
||||||
|
}
|
||||||
|
|
||||||
|
//Save the revision and the author id in sessioninfos
|
||||||
|
sessioninfos[client.id].author = author;
|
||||||
}
|
}
|
||||||
//This is a normal first connect
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//Send the clientVars to the Client
|
|
||||||
client.json.send(clientVars);
|
|
||||||
//Save the revision in sessioninfos
|
|
||||||
sessioninfos[client.id].rev = pad.getHeadRevisionNumber();
|
|
||||||
}
|
|
||||||
|
|
||||||
//Save the revision and the author id in sessioninfos
|
|
||||||
sessioninfos[client.id].author = author;
|
|
||||||
|
|
||||||
//prepare the notification for the other users on the pad, that this user joined
|
//prepare the notification for the other users on the pad, that this user joined
|
||||||
var messageToTheOtherUsers = {
|
var messageToTheOtherUsers = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue