Skip to content

Commit

Permalink
support cdart image filename
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Aug 22, 2013
1 parent eca0aac commit 5f12fe4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MediaBrowser.Providers/ImageFromMediaLocationProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,8 @@ private void PopulateBaseItemImages(BaseItem item, ItemResolveArgs args)
}

// Disc
image = GetImage(item, args, "disc");
image = GetImage(item, args, "disc") ??
GetImage(item, args, "cdart");

if (image != null)
{
Expand Down

0 comments on commit 5f12fe4

Please sign in to comment.