Skip to content

Commit

Permalink
Fixed Android's StreamImageSourceService.LoadDrawableAsync()
Browse files Browse the repository at this point in the history
Transition back to the calling thread context (which should theoretically be the main thread).

Fixes issue #14052
  • Loading branch information
jstedfast committed Mar 21, 2023
1 parent cc96e83 commit fba0318
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public partial class StreamImageSourceService
Stream? stream = null;
try
{
stream = await streamImageSource.GetStreamAsync(cancellationToken).ConfigureAwait(false);
stream = await streamImageSource.GetStreamAsync(cancellationToken);

var callback = new ImageLoaderCallback();

Expand Down

0 comments on commit fba0318

Please sign in to comment.