1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-02 08:25:02 -04:00

* sanity check

This commit is contained in:
Reinhard Pointner 2015-11-19 12:42:11 +00:00
parent 348cea60bf
commit aaa5a71e49

View File

@ -777,7 +777,9 @@ public class MediaBindingBean {
public String getUserDefinedLabel() throws IOException {
for (Entry<String, String> it : getUserDefinedArguments().entrySet()) {
if (it.getKey().endsWith("label")) {
return it.getValue();
if (it.getValue().length() > 0) {
return it.getValue();
}
}
}
return null;