diff --git a/OneMore/Models/Page.cs b/OneMore/Models/Page.cs index a4c80bc613..0987e1283e 100644 --- a/OneMore/Models/Page.cs +++ b/OneMore/Models/Page.cs @@ -66,10 +66,15 @@ private void ComputeHashes(XElement root) // 1st generation child elements of the Page foreach (var child in root.Elements()) { - child.Add(new XAttribute( - HashAttributeName, - algo.GetHashString(child.ToString(SaveOptions.DisableFormatting)) - )); + if (child.Name.LocalName != "TagDef" && + child.Name.LocalName != "QuickStyleDef" && + child.Name.LocalName != "Meta") + { + child.Add(new XAttribute( + HashAttributeName, + algo.GetHashString(child.ToString(SaveOptions.DisableFormatting)) + )); + } } }