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 May 22, 2023
1 parent 3b62095 commit 1290d00
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 1290d00

Please sign in to comment.