save thumbs as landscape in compatible mode

pull/702/head
Luke Pulverenti 11 years ago
parent 44c0eba39d
commit 809ed093e8

@ -563,6 +563,13 @@ namespace MediaBrowser.Server.Implementations.Providers
return new[] { Path.Combine(seriesFolder, imageFilename) };
}
if (item.IsInMixedFolder)
{
return new[] { GetSavePathForItemInMixedFolder(item, type, "landscape", extension) };
}
return new[] { Path.Combine(item.MetaLocation, "landscape" + extension) };
}
// All other paths are the same

Loading…
Cancel
Save