Commit 5d6e6533 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #34480

parent 73a49d78
...@@ -290,7 +290,8 @@ CChangesDocumentContentRemoveItem.prototype.Load = function(Color) ...@@ -290,7 +290,8 @@ CChangesDocumentContentRemoveItem.prototype.Load = function(Color)
} }
else else
{ {
oDocument.Content[Pos - 1].Next = null; if (oDocument.Content[Pos - 1])
oDocument.Content[Pos - 1].Next = null;
} }
} }
else if (Pos <= oDocument.Content.length - 1) else if (Pos <= oDocument.Content.length - 1)
......
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