v0.8.0: fixed an error with new class bundle functionality

This commit is contained in:
Evan Debenham 2019-11-30 17:22:06 -05:00
parent 17ee80e058
commit 3dcd4ce216

View File

@ -393,7 +393,7 @@ public class Bundle {
try {
JSONArray jsonArray = new JSONArray();
for (int i=0; i < array.length; i++) {
jsonArray.put( i, array[i].getCanonicalName() );
jsonArray.put( i, array[i].getName() );
}
data.put( key, jsonArray );
} catch (JSONException e) {