ngocnicholas / airtable.net

Airtable .NET API Client
MIT License
138 stars 34 forks source link

Added ConfigureAwait(false) on async await calls #50

Closed hinek closed 2 years ago

hinek commented 2 years ago

We had trouble to call methods on AirtableBase from synchronous code. The changes in this commit fixed them for us and should not compromise asynchronous calls. See: https://blog.stephencleary.com/2012/07/dont-block-on-async-code.html

ngocnicholas commented 2 years ago

These changes are contributed by hinek. Thank you very much.