mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 17:44:43 +01:00
3.2.30.8
This commit is contained in:
@@ -126,6 +126,7 @@ namespace Emby.Drawing
|
||||
return new string[]
|
||||
{
|
||||
"tiff",
|
||||
"tif",
|
||||
"jpeg",
|
||||
"jpg",
|
||||
"png",
|
||||
@@ -967,8 +968,15 @@ namespace Emby.Drawing
|
||||
public void Dispose()
|
||||
{
|
||||
_disposed = true;
|
||||
_imageEncoder.Dispose();
|
||||
|
||||
var disposable = _imageEncoder as IDisposable;
|
||||
if (disposable != null)
|
||||
{
|
||||
disposable.Dispose();
|
||||
}
|
||||
|
||||
_saveImageSizeTimer.Dispose();
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
|
||||
private void CheckDisposed()
|
||||
|
||||
Reference in New Issue
Block a user