mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-12-01 12:31:45 +00:00
Rewrite include/exclude filter dialog (#6057)
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user