Check language in Artwork.matches() as well
This commit is contained in:
parent
260f93e671
commit
ecf7232f00
|
@ -53,9 +53,9 @@ public class Artwork implements Serializable {
|
||||||
return rating;
|
return rating;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean matches(String... tags) {
|
public boolean matches(Object... tags) {
|
||||||
return stream(tags).filter(Objects::nonNull).allMatch(tag -> {
|
return stream(tags).filter(Objects::nonNull).map(Object::toString).allMatch(tag -> {
|
||||||
return stream(tags).anyMatch(tag::equalsIgnoreCase) || tag.equalsIgnoreCase(language);
|
return stream(this.tags).anyMatch(tag::equalsIgnoreCase) || tag.equalsIgnoreCase(language);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue