fix query string parsing issue

This commit is contained in:
LukePulverenti 2013-02-21 02:00:04 -05:00
parent bd2f385e56
commit 815240f920
2 changed files with 47 additions and 43 deletions

View file

@ -10,19 +10,19 @@ namespace MediaBrowser.Api.Images
/// <summary>
/// The max width
/// </summary>
public int? MaxWidth;
public int? MaxWidth { get; set; }
/// <summary>
/// The max height
/// </summary>
public int? MaxHeight;
public int? MaxHeight { get; set; }
/// <summary>
/// The width
/// </summary>
public int? Width;
public int? Width { get; set; }
/// <summary>
/// The height
/// </summary>
public int? Height;
public int? Height { get; set; }
/// <summary>
/// Gets or sets the quality.
/// </summary>

View file

@ -207,6 +207,9 @@ namespace MediaBrowser.Common.Net
return;
}
Task.Run(() =>
{
RaiseReceiveWebRequest(context);
try
@ -255,6 +258,7 @@ namespace MediaBrowser.Common.Net
throw;
}
});
}
/// <summary>