Fixed the image profiler manager returning profile paths even when the image creation has failed (#7901)

This commit is contained in:
Carl Woodhouse 2017-12-07 20:07:49 +00:00 committed by Sébastien Ros
parent 60077743eb
commit 9ea077830b

View File

@ -131,13 +131,12 @@ namespace Orchard.MediaProcessing.Services {
// to handle cross machines concurrency
lock (String.Intern(path)) {
using (var image = GetImage(path)) {
if (image == null) {
return null;
}
var filterContext = new FilterContext { Media = image, FilePath = _storageProvider.Combine("_Profiles", FormatProfilePath(profileName, System.Web.HttpUtility.UrlDecode(path))) };
if (image == null) {
return filterContext.FilePath;
}
var tokens = new Dictionary<string, object>();
// if a content item is provided, use it while tokenizing
if (contentItem != null) {