diff --git a/src/ImageSharp/Image.FromStream.cs b/src/ImageSharp/Image.FromStream.cs
index 713270525..5be263bf6 100644
--- a/src/ImageSharp/Image.FromStream.cs
+++ b/src/ImageSharp/Image.FromStream.cs
@@ -330,7 +330,7 @@ namespace SixLabors.ImageSharp
/// A new .>
public static async Task LoadAsync(Configuration configuration, Stream stream)
{
- var fmt = await LoadWithFormatAsync(configuration, stream);
+ var fmt = await LoadWithFormatAsync(configuration, stream).ConfigureAwait(false);
return fmt.Image;
}