Skip to content

Commit

Permalink
Now that we Freeze, we don't need ObserveOn
Browse files Browse the repository at this point in the history
  • Loading branch information
anaisbetts committed Apr 20, 2012
1 parent 70e4ebf commit 84285f4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Akavache/BlobCacheExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,7 @@ public static IObservable<BitmapImage> LoadImageFromUrl(this IBlobCache This, st
{
return This.DownloadUrl(url, null, fetchAlways, absoluteExpiration)
.SelectMany(ThrowOnBadImageBuffer)
.SelectMany(BytesToImage)
.ObserveOn(RxApp.DeferredScheduler);
.SelectMany(BytesToImage);
}

public static IObservable<byte[]> ThrowOnBadImageBuffer(byte[] compressedImage)
Expand Down

0 comments on commit 84285f4

Please sign in to comment.