Browse Source

Added async moniker to GetImageStream

LukePulverenti Luke Pulverenti luke pulverenti 13 years ago
parent
commit
98841cb6f8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.ApiInteraction/ApiClient.cs

+ 1 - 1
MediaBrowser.ApiInteraction/ApiClient.cs

@@ -68,7 +68,7 @@ namespace MediaBrowser.ApiInteraction
         /// <summary>
         /// Gets an image stream based on a url
         /// </summary>
-        public async Task<Stream> GetImageStream(string url)
+        public async Task<Stream> GetImageStreamAsync(string url)
         {
             Stream stream = await HttpClient.GetStreamAsync(url);