Compare commits

..

1 Commits

Author SHA1 Message Date
Peter Zignego df661762a9 Bug fix 2016-07-23 11:09:54 -04:00
+1 -1
View File
@@ -37,7 +37,7 @@ public struct Response {
var json = [String : AnyObject]()
json["text"] = text
json["response_type"] = responseType?.rawValue
json["attachments"] = attachments?.flatMap({$0.dictionary()})
json["attachments"] = attachments?.map({$0.dictionary()})
return json
}