slash-hq / slash

Slack terminal client.
Apache License 2.0
172 stars 16 forks source link

Replace use of NSURLConnection.sendSynchronousRequest #14

Closed akrabat closed 7 years ago

akrabat commented 7 years ago

This method is deprecated in favour of using URLSession's dataTask methods. However, dataTask is asynchronous, so we extend URLSession to create a new synchronousDataTask method which wraps up the asynchronicity for us.

damian-kolakowski commented 7 years ago

looks good man :+1: