The other calls were fixed with the resolution of #163. This calls seems to have been missed.
I ran into a deadlock using a call that lists all mandates. (I know, I should use Async all the way, but that is just simply not possible in our huge code base at the moment).
In the BaseMollieClient one async call of the
SendHttpRequest
is missing aconfigureAwait(false)
.Location: https://github.com/Viincenttt/MollieApi/blob/e87b6323a3bd0cf4cbe800997bdf5bc352d22255/Mollie.Api/Client/BaseMollieClient.cs#L51
The other calls were fixed with the resolution of #163. This calls seems to have been missed.
I ran into a deadlock using a call that lists all mandates. (I know, I should use Async all the way, but that is just simply not possible in our huge code base at the moment).