From 98841cb6f8797ca5be5b270038d8915b1fed318c Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Tue, 31 Jul 2012 12:30:38 -0400 Subject: [PATCH] Added async moniker to GetImageStream --- MediaBrowser.ApiInteraction/ApiClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaBrowser.ApiInteraction/ApiClient.cs b/MediaBrowser.ApiInteraction/ApiClient.cs index f9234441ce..06d7b7ed42 100644 --- a/MediaBrowser.ApiInteraction/ApiClient.cs +++ b/MediaBrowser.ApiInteraction/ApiClient.cs @@ -68,7 +68,7 @@ namespace MediaBrowser.ApiInteraction /// /// Gets an image stream based on a url /// - public async Task GetImageStream(string url) + public async Task GetImageStreamAsync(string url) { Stream stream = await HttpClient.GetStreamAsync(url);