aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/LiveTv/RecordingImageProvider.cs
diff options
context:
space:
mode:
authorEric Reed <ebr@mediabrowser3.com>2014-01-29 12:22:53 -0500
committerEric Reed <ebr@mediabrowser3.com>2014-01-29 12:22:53 -0500
commitab5145bcd794ee579e0064c9c0f9d15b13f72fb4 (patch)
treed68cdabe4302cc4dda8194ee840060f48d9fa714 /MediaBrowser.Server.Implementations/LiveTv/RecordingImageProvider.cs
parent1f31c8dbfca9ca9134d9ee779256c435f913689b (diff)
parentc0f606683a045e463f518ec466b9fc9a85f8d4fd (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Server.Implementations/LiveTv/RecordingImageProvider.cs')
-rw-r--r--MediaBrowser.Server.Implementations/LiveTv/RecordingImageProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/RecordingImageProvider.cs b/MediaBrowser.Server.Implementations/LiveTv/RecordingImageProvider.cs
index 9f6ab85a4..ce7c1286b 100644
--- a/MediaBrowser.Server.Implementations/LiveTv/RecordingImageProvider.cs
+++ b/MediaBrowser.Server.Implementations/LiveTv/RecordingImageProvider.cs
@@ -118,7 +118,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv
if (response != null)
{
imageStream = response.Stream;
- contentType = response.MimeType;
+ contentType = "image/" + response.Format.ToString().ToLower();
}
}
catch (NotImplementedException)