mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
Fixed a bug with OPDS feeds not returning back results due to improperly setting up FilterDto. (#882)
This commit is contained in:
parent
392dde052c
commit
0ef8d47831
@ -7,7 +7,7 @@ namespace API.DTOs.Filtering;
|
||||
/// </summary>
|
||||
public class ReadStatus
|
||||
{
|
||||
public bool NotRead { get; set; } = false;
|
||||
public bool InProgress { get; set; } = false;
|
||||
public bool Read { get; set; } = false;
|
||||
public bool NotRead { get; set; } = true;
|
||||
public bool InProgress { get; set; } = true;
|
||||
public bool Read { get; set; } = true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user