mirror of https://github.com/readrops/Readrops.git
Fix star filter query part
This commit is contained in:
parent
af5138c1cb
commit
ea14ae3013
|
@ -67,7 +67,7 @@ object ItemsQueryBuilder {
|
||||||
FilterType.READ_IT_LATER_FILTER -> append("read_it_later = 1")
|
FilterType.READ_IT_LATER_FILTER -> append("read_it_later = 1")
|
||||||
FilterType.STARS_FILTER -> {
|
FilterType.STARS_FILTER -> {
|
||||||
if (separateState) {
|
if (separateState) {
|
||||||
append("ItemState.remote_id is NULL or ItemState.starred = 1 And read_it_later = 0")
|
append("ItemState.starred = 1 And read_it_later = 0")
|
||||||
} else {
|
} else {
|
||||||
append("starred = 1 And read_it_later = 0")
|
append("starred = 1 And read_it_later = 0")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue