trim whitespaces before putting strings
This commit is contained in:
parent
a7aacfd955
commit
710398822d
@ -415,7 +415,7 @@ public class MediaMetadataExtractor extends HashMap<String, ArrayList<String>> {
|
||||
for (String s : data) {
|
||||
Matcher matcher = filter.matcher(s);
|
||||
if (matcher.matches()) {
|
||||
list.add(matcher.group(1));
|
||||
list.add(matcher.group(1).trim());
|
||||
}
|
||||
}
|
||||
if (list.size() > 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user