1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-09 22:09:47 -04:00

* make sure {genre} is going through invalid characters removal

This commit is contained in:
Reinhard Pointner 2014-12-24 18:09:38 +00:00
parent b7e018bcb3
commit dd41be38cf

View File

@ -537,8 +537,8 @@ public class MediaBindingBean {
}
@Define("genre")
public Object getPrimaryGenre() {
return ((Iterable<?>) getGenres()).iterator().next();
public String getPrimaryGenre() {
return ((Iterable<?>) getGenres()).iterator().next().toString();
}
@Define("director")