Fixes v0.4.19! (#855)
* Fixed OPDS urls to work with new Filtering schema * Fixed a rendering issue with Language tag when it's null * Fixed a bug where locked covers were resetting during refresh metadata. * Redid all the migrations and put some extra checks due to a bad migration from previous release (EF Core was producing an error). * Fixed a bug which didn't take sort direction when not changing sort field * Default installs now backup daily
This commit is contained in:
parent
036aa331d2
commit
12889be788
18 changed files with 110 additions and 2648 deletions
|
|
@ -34,7 +34,26 @@ public class OpdsController : BaseApiController
|
|||
private const string Prefix = "/api/opds/";
|
||||
private readonly FilterDto _filterDto = new FilterDto()
|
||||
{
|
||||
Formats = new List<MangaFormat>()
|
||||
Formats = new List<MangaFormat>(),
|
||||
Character = new List<int>(),
|
||||
Colorist = new List<int>(),
|
||||
Editor = new List<int>(),
|
||||
Genres = new List<int>(),
|
||||
Inker = new List<int>(),
|
||||
Languages = new List<string>(),
|
||||
Letterer = new List<int>(),
|
||||
Penciller = new List<int>(),
|
||||
Libraries = new List<int>(),
|
||||
Publisher = new List<int>(),
|
||||
Rating = 0,
|
||||
Tags = new List<int>(),
|
||||
Translators = new List<int>(),
|
||||
Writers = new List<int>(),
|
||||
AgeRating = new List<AgeRating>(),
|
||||
CollectionTags = new List<int>(),
|
||||
CoverArtist = new List<int>(),
|
||||
ReadStatus = new ReadStatus(),
|
||||
SortOptions = null
|
||||
};
|
||||
private readonly ChapterSortComparer _chapterSortComparer = new ChapterSortComparer();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue