Smart Filter Encoding Fix (#2387)

This commit is contained in:
Joe Milazzo 2023-11-02 08:35:43 -05:00 committed by GitHub
parent b6d4938e22
commit 9894a2623c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
133 changed files with 677 additions and 471 deletions

View file

@ -2,6 +2,8 @@
namespace API.Comparators;
#nullable enable
/// <summary>
/// Sorts chapters based on their Number. Uses natural ordering of doubles.
/// </summary>

View file

@ -2,6 +2,8 @@
namespace API.Comparators;
#nullable enable
public class NumericComparer : IComparer
{

View file

@ -6,6 +6,7 @@ using static System.Char;
namespace API.Comparators;
public static class StringLogicalComparer
{
public static int Compare(string s1, string s2)