Added async moniker to GetImageStream

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-07-31 12:30:38 -04:00
parent defd8ed253
commit 98841cb6f8

View File

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