mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
bugfix / timeslider: only update timeslider on correct message type -- resolves #4100
This commit is contained in:
parent
09ce8bcc45
commit
3ddce87ee4
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ function init() {
|
||||||
{
|
{
|
||||||
$("body").html("<h2>You have no permission to access this pad</h2>")
|
$("body").html("<h2>You have no permission to access this pad</h2>")
|
||||||
} else {
|
} else {
|
||||||
changesetLoader.handleMessageFromServer(message);
|
if(message.type === 'CHANGESET_REQ') changesetLoader.handleMessageFromServer(message);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue