bugfix / timeslider: only update timeslider on correct message type -- resolves #4100

This commit is contained in:
John McLear 2020-07-17 16:40:24 +01:00 committed by GitHub
parent 09ce8bcc45
commit 3ddce87ee4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,7 +86,7 @@ function init() {
{
$("body").html("<h2>You have no permission to access this pad</h2>")
} else {
changesetLoader.handleMessageFromServer(message);
if(message.type === 'CHANGESET_REQ') changesetLoader.handleMessageFromServer(message);
}
});