Word Compare function does not show the correct result

I’ve a problem while comparing 2 documents.
I get this result:

but the correct result should be:

If I try the same task with the Word compare function it works fine.
If I also open the document with Word (v7d.docx attached) and I save it then it’s work.

This is the code used to reproduce the problem:

Aspose.Words.Document doc6 = new Aspose.Words.Document($"c:\\test\\v6d.docx");
Aspose.Words.Document doc7 = new Aspose.Words.Document($"c:\\test\\v7d.docx");

doc6.TrackRevisions = false;
doc6.StopTrackRevisions();
doc6.AcceptAllRevisions();

doc7.TrackRevisions = false;
doc7.StopTrackRevisions();
doc7.AcceptAllRevisions();

doc6.Compare(doc7, "user", DateTime.Now);
doc6.Save($"c:\\test\\DocCompare - 6 vs 7.docx");

//v7d2.docx ---> document opened with Word and only saved with a different name 
//v7d.docx to v7d2.docx
doc7 = new Aspose.Words.Document($"c:\\test\\v7d2.docx");

doc7.TrackRevisions = false;
doc7.StopTrackRevisions();
doc7.AcceptAllRevisions();

doc6.Compare(doc7, "user", DateTime.Now);
doc6.Save($"c:\\test\\DocCompare - 6 vs 7-2.docx");

v6d.docx (1.6 MB)
v7d.docx (803.0 KB)
v7d2.docx (432.5 KB)

@davidepedrocca
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): WORDSNET-25811

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

The issues you have found earlier (filed as WORDSNET-25811) have been fixed in this Aspose.Words for .NET 23.9 update also available on NuGet.