aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/ImageOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Dto/ImageOptions.cs')
-rw-r--r--MediaBrowser.Model/Dto/ImageOptions.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Dto/ImageOptions.cs b/MediaBrowser.Model/Dto/ImageOptions.cs
index 08ac7906a..037be4a87 100644
--- a/MediaBrowser.Model/Dto/ImageOptions.cs
+++ b/MediaBrowser.Model/Dto/ImageOptions.cs
@@ -1,6 +1,5 @@
using MediaBrowser.Model.Drawing;
using MediaBrowser.Model.Entities;
-using System;
namespace MediaBrowser.Model.Dto
{
@@ -74,7 +73,7 @@ namespace MediaBrowser.Model.Dto
/// Gets or sets the format.
/// </summary>
/// <value>The format.</value>
- public ImageOutputFormat Format { get; set; }
+ public ImageOutputFormat? Format { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [add played indicator].
@@ -100,8 +99,6 @@ namespace MediaBrowser.Model.Dto
public ImageOptions()
{
EnableImageEnhancers = true;
-
- Format = ImageOutputFormat.Original;
}
}
}