Small fix

This commit is contained in:
libraryaddict 2017-12-10 11:45:22 +13:00
parent 99ffcf6d1d
commit c901fcba58

View File

@ -471,7 +471,7 @@ public class DisguiseParser {
}
if (builder.length() != 0) {
list.addAll(Arrays.asList(builder.toString().split(" ")));
list.addAll(Arrays.asList(("\"" + builder.toString()).split(" ")));
}
return list.toArray(new String[list.size()]);