Rewrite include/exclude filter dialog (#6057)

This commit is contained in:
ByteHamster
2022-09-18 22:25:06 +02:00
committed by GitHub
parent bd0f54dbf6
commit 097a491504
9 changed files with 275 additions and 170 deletions

View File

@ -102,14 +102,22 @@ public class FeedFilter implements Serializable {
return false;
}
public String getIncludeFilter() {
public String getIncludeFilterRaw() {
return includeFilter;
}
public String getExcludeFilter() {
public String getExcludeFilterRaw() {
return excludeFilter;
}
public List<String> getIncludeFilter() {
return includeFilter == null ? new ArrayList<>() : parseTerms(includeFilter);
}
public List<String> getExcludeFilter() {
return excludeFilter == null ? new ArrayList<>() : parseTerms(excludeFilter);
}
public int getMinimalDurationFilter() {
return minimalDuration;
}