When you have a input name like `foo[8.8.8.8]` serialising the form data into JSON creates: ```json { "foo": {"8": {"8": {"8": {"8": "VALUE"}}}} }``` Rather than the expected: ```json { "foo": {"8.8.8.8": "VALUE"} }```