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 authored and rmarinho committed May 30, 2023
1 parent 381cc69 commit 3e7d179
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 3e7d179

Please sign in to comment.