mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix query string parsing issue
This commit is contained in:
parent
bd2f385e56
commit
815240f920
@ -10,19 +10,19 @@ namespace MediaBrowser.Api.Images
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The max width
|
/// The max width
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int? MaxWidth;
|
public int? MaxWidth { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The max height
|
/// The max height
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int? MaxHeight;
|
public int? MaxHeight { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The width
|
/// The width
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int? Width;
|
public int? Width { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The height
|
/// The height
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int? Height;
|
public int? Height { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the quality.
|
/// Gets or sets the quality.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -207,6 +207,9 @@ namespace MediaBrowser.Common.Net
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Task.Run(() =>
|
||||||
|
{
|
||||||
RaiseReceiveWebRequest(context);
|
RaiseReceiveWebRequest(context);
|
||||||
|
|
||||||
try
|
try
|
||||||
@ -255,6 +258,7 @@ namespace MediaBrowser.Common.Net
|
|||||||
|
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user