ammonia-wasm
ammonia-wasm copied to clipboard
Incorrect type of 'setTagAttributeValues' property
The setTagAttributeValues
property of the AmmoniaBuilder
class expects a value of type Map<string, Map<string, Set<string>>>
[link]. But the same property in rust-ammonia expects the type Map<string, Map<string, string>>
[link]. This leads to an error when trying to set this property on instance of the AmmoniaBuilder
class.
Changing the type of setTagAttributeValues
to Map<string, Map<string, string>>
resolves this issue. Please fix this bug. I can also raise a PR if that helps.
Added a PR - https://github.com/lucacasonato/ammonia-wasm/pull/3