<!-- Before raising, please check if somebody else has already reported your issue. --> ### Describe the bug When sending the result of `Dictionary.keys` as metadata, it is not properly dispayed without converting to array. ### Steps to reproduce ``` swift Bugsnag.notifyError(NSError(domain: "test", code: 1)) { event in event.addMetadata(["hello": 1, "world": 2].keys, key: "keys", section: "nserror") return true } ``` Results in: 