diff --git a/io_scene_fbx/json2fbx.py b/io_scene_fbx/json2fbx.py
index dc4c5bccdf0f81364c4b889fcc8b23ec226e89bb..579b45a79414e48338e91e94e7a77da7e02491da 100755
--- a/io_scene_fbx/json2fbx.py
+++ b/io_scene_fbx/json2fbx.py
@@ -108,9 +108,9 @@ def parse_json_rec(fbx_root, json_node):
         elif dt == "d":
             e.add_float64_array(d)
         elif dt == "b":
-            e.add_byte_array(d)
-        elif dt == "c":
             e.add_bool_array(d)
+        elif dt == "c":
+            e.add_byte_array(d)
 
     if name == "FBXVersion":
         assert(data_types == "I")