aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Probing
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-01-27 23:23:19 -0500
committerGitHub <noreply@github.com>2017-01-27 23:23:19 -0500
commitfd93caf37f27c8e197af37b89960195ea023e7b1 (patch)
tree9f04111e31ecac922882e9353f108baa804198c9 /MediaBrowser.MediaEncoding/Probing
parent90420a7c23712e982c9062bf7e14f65195c2a723 (diff)
parentf616aee90b1a27a573302740cfa17d420a2b6bc1 (diff)
Merge pull request #2428 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.MediaEncoding/Probing')
-rw-r--r--MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs9
1 files changed, 1 insertions, 8 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
index 2f8ecaece..256c38597 100644
--- a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
+++ b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
@@ -90,13 +90,11 @@ namespace MediaBrowser.MediaEncoding.Probing
}
FetchGenres(info, tags);
- var shortOverview = FFProbeHelpers.GetDictionaryValue(tags, "description");
var overview = FFProbeHelpers.GetDictionaryValue(tags, "synopsis");
if (string.IsNullOrWhiteSpace(overview))
{
- overview = shortOverview;
- shortOverview = null;
+ overview = FFProbeHelpers.GetDictionaryValue(tags, "description");
}
if (string.IsNullOrWhiteSpace(overview))
{
@@ -108,11 +106,6 @@ namespace MediaBrowser.MediaEncoding.Probing
info.Overview = overview;
}
- if (!string.IsNullOrWhiteSpace(shortOverview))
- {
- info.ShortOverview = shortOverview;
- }
-
var title = FFProbeHelpers.GetDictionaryValue(tags, "title");
if (!string.IsNullOrWhiteSpace(title))
{