From c41452a1ebd2f7549767b4924596cccc3eca8ded Mon Sep 17 00:00:00 2001 From: Jonathan Magnan Date: Tue, 28 Sep 2021 10:46:39 -0400 Subject: [PATCH] Update HtmlAttribute.cs --- src/HtmlAgilityPack.Shared/HtmlAttribute.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/HtmlAgilityPack.Shared/HtmlAttribute.cs b/src/HtmlAgilityPack.Shared/HtmlAttribute.cs index 5cb4a6a..fea1f8e 100644 --- a/src/HtmlAgilityPack.Shared/HtmlAttribute.cs +++ b/src/HtmlAgilityPack.Shared/HtmlAttribute.cs @@ -286,10 +286,9 @@ public HtmlAttribute Clone() att.Value = Value; att.QuoteType = QuoteType; att.InternalQuoteType = InternalQuoteType; - + att._isFromParse = _isFromParse; att._hasEqual = _hasEqual; - return att; }