key.instantiate needs an Array, not an Immutable.List

This commit is contained in:
Tony Garnock-Jones 2016-05-15 06:12:37 -04:00
parent a55ed180db
commit 0653bdae3c
1 changed files with 1 additions and 1 deletions

View File

@ -681,7 +681,7 @@ function reconstructSequence(key, items) {
if (key === SOA) {
return items.toArray();
} else {
return key.instantiate(items);
return key.instantiate(items.toArray());
}
}