mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Make image header extension matching case insensitive
This commit is contained in:
parent
78a5d999f4
commit
f2dae8ee51
1 changed files with 5 additions and 4 deletions
|
@ -50,12 +50,13 @@ namespace Emby.Drawing.Common
|
|||
/// <exception cref="ArgumentException">The image was of an unrecognised format.</exception>
|
||||
public static ImageSize GetDimensions(string path, ILogger logger, IFileSystem fileSystem)
|
||||
{
|
||||
var extension = Path.GetExtension(path);
|
||||
|
||||
if (string.IsNullOrEmpty(extension))
|
||||
if (string.IsNullOrEmpty(path))
|
||||
{
|
||||
throw new ArgumentException("ImageHeader doesn't support image file");
|
||||
throw new ArgumentNullException(nameof(path));
|
||||
}
|
||||
|
||||
string extension = Path.GetExtension(path).ToLower();
|
||||
|
||||
if (!SupportedExtensions.Contains(extension))
|
||||
{
|
||||
throw new ArgumentException("ImageHeader doesn't support " + extension);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue