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
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue