Explorar el Código

support primary images with same name as original file

Luke Pulverenti hace 12 años
padre
commit
3b1dabff0f
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. 11 0
      MediaBrowser.Providers/ImageFromMediaLocationProvider.cs

+ 11 - 0
MediaBrowser.Providers/ImageFromMediaLocationProvider.cs

@@ -157,6 +157,17 @@ namespace MediaBrowser.Providers
                 GetImage(item, "cover") ??
                 GetImage(item, "default");
 
+            // Look for a file with the same name as the item
+            if (image == null)
+            {
+                var name = Path.GetFileNameWithoutExtension(item.Path);
+
+                if (!string.IsNullOrEmpty(name))
+                {
+                    image = GetImage(item, name);
+                }
+            }
+
             if (image != null)
             {
                 item.SetImage(ImageType.Primary, image.FullName);