Bugfix/in progress (#452)
# Fixed - Fixed: Fixed an issue in In Progress where it would not pull the series with correct pagination due to the unique situation with the query. All series that are in progress should now return. ============================ * Fixed In Progress not showing for all series due to pagination bug * Version bump
This commit is contained in:
parent
01007dee28
commit
fd6fa2fce4
5 changed files with 52 additions and 41 deletions
|
@ -7,7 +7,7 @@ namespace API.Extensions
|
|||
{
|
||||
public static class FilterDtoExtensions
|
||||
{
|
||||
private static IList<MangaFormat> _allFormats = Enum.GetValues<MangaFormat>();
|
||||
private static readonly IList<MangaFormat> AllFormats = Enum.GetValues<MangaFormat>();
|
||||
|
||||
public static IList<MangaFormat> GetSqlFilter(this FilterDto filter)
|
||||
{
|
||||
|
@ -19,10 +19,7 @@ namespace API.Extensions
|
|||
(MangaFormat) format
|
||||
};
|
||||
}
|
||||
else
|
||||
{
|
||||
return _allFormats;
|
||||
}
|
||||
return AllFormats;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue