[frontend/core] Fix sorting of ascendant notes

This commit is contained in:
Lilian 2025-01-19 19:02:27 +01:00
parent 122bba5b55
commit 4b8bc540f8
No known key found for this signature in database

View file

@ -139,7 +139,7 @@ internal class RelatedStore : NoteMessageProvider, IDisposable
private class NoteContainer
{
public SortedList<string, NoteResponse> Notes { get; } = new(Comparer<string>.Create((x, y) => y.CompareTo(x)));
public SortedList<string, NoteResponse> Notes { get; } = new();
}
public void Dispose()