Commit dbf82a36 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #34543

parent 3e256d4d
......@@ -816,7 +816,7 @@ CPresentation.prototype =
}
var bHaveChanges = History.Have_Changes(true);
if (true !== bHaveChanges && true === AscCommon.CollaborativeEditing.Have_OtherChanges() || 0 !== AscCommon.CollaborativeEditing.getOwnLocksLength())
if (true !== bHaveChanges && (true === AscCommon.CollaborativeEditing.Have_OtherChanges() || 0 !== AscCommon.CollaborativeEditing.getOwnLocksLength()))
{
// Принимаем чужие изменение. Своих нет, но функцию отсылки надо вызвать, чтобы снялить локи.
AscCommon.CollaborativeEditing.Apply_Changes();
......
......@@ -10054,7 +10054,7 @@ CDocument.prototype.Continue_FastCollaborativeEditing = function()
return;
var HaveChanges = this.History.Have_Changes(true);
if (true !== HaveChanges && true === this.CollaborativeEditing.Have_OtherChanges() || 0 !== this.CollaborativeEditing.getOwnLocksLength())
if (true !== HaveChanges && (true === this.CollaborativeEditing.Have_OtherChanges() || 0 !== this.CollaborativeEditing.getOwnLocksLength()))
{
// Принимаем чужие изменения. Своих нет, но функцию отсылки надо вызвать, чтобы снять локи.
this.CollaborativeEditing.Apply_Changes();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment