Fixed a bug with OPDS feeds not returning back results due to improperly setting up FilterDto. (#882)

This commit is contained in:
Joseph Milazzo 2022-01-03 08:17:55 -06:00 committed by GitHub
parent 392dde052c
commit 0ef8d47831
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ namespace API.DTOs.Filtering;
/// </summary> /// </summary>
public class ReadStatus public class ReadStatus
{ {
public bool NotRead { get; set; } = false; public bool NotRead { get; set; } = true;
public bool InProgress { get; set; } = false; public bool InProgress { get; set; } = true;
public bool Read { get; set; } = false; public bool Read { get; set; } = true;
} }