From b85ea26b7a80b45244b91eb4d4f987b4b969ac28 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 11 May 2013 13:56:11 -0400 Subject: [PATCH] fixes #263 - User profile images lost --- MediaBrowser.Api/Images/ImageService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaBrowser.Api/Images/ImageService.cs b/MediaBrowser.Api/Images/ImageService.cs index 2420aad3ff..f231449879 100644 --- a/MediaBrowser.Api/Images/ImageService.cs +++ b/MediaBrowser.Api/Images/ImageService.cs @@ -754,7 +754,7 @@ namespace MediaBrowser.Api.Images } // Don't save locally if there's no parent (special feature, trailer, etc) - var saveLocally = !(entity is Audio) && entity.Parent != null && !string.IsNullOrEmpty(entity.MetaLocation); + var saveLocally = (!(entity is Audio) && entity.Parent != null && !string.IsNullOrEmpty(entity.MetaLocation)) || entity is User; if (imageType != ImageType.Primary) {