plugin command

This commit is contained in:
Fernando Herrera 2021-10-23 21:11:19 +01:00
parent 232790f488
commit 5a1d99cefb

View File

@ -74,10 +74,7 @@ pub mod plugin_value {
Value::String { val, .. } => {
list_builder.reborrow().get(index as u32).set_string(val);
}
Value::List { vals, .. } => {
let test = builder.reborrow();
serialize_list(vals, test)
}
Value::List { vals, .. } => serialize_list(vals, builder),
_ => {}
}
}