diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-07 15:30:41 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-07 15:30:41 -0500 |
| commit | 76658f07977a5857c752dc1266b66f881b454f48 (patch) | |
| tree | 34a55486343c34fedc03099891a2e2eb8690dc02 /MediaBrowser.ServerApplication/LibraryExplorer.xaml.cs | |
| parent | 5e2a2a02ef73517f11ef9c7a513ac53ed0f9b2e8 (diff) | |
create images list object
Diffstat (limited to 'MediaBrowser.ServerApplication/LibraryExplorer.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/LibraryExplorer.xaml.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.ServerApplication/LibraryExplorer.xaml.cs b/MediaBrowser.ServerApplication/LibraryExplorer.xaml.cs index 51d6615183..66a99f2e5a 100644 --- a/MediaBrowser.ServerApplication/LibraryExplorer.xaml.cs +++ b/MediaBrowser.ServerApplication/LibraryExplorer.xaml.cs @@ -258,8 +258,8 @@ namespace MediaBrowser.ServerApplication previews.Add(new PreviewItem(item.GetImagePath(ImageType.Thumb), "Thumb")); } previews.AddRange( - item.BackdropImagePaths.Select( - image => new PreviewItem(image, "Backdrop"))); + item.GetImages(ImageType.Backdrop).Select( + image => new PreviewItem(image.Path, "Backdrop"))); }); lstPreviews.ItemsSource = previews; lstPreviews.Items.Refresh(); |
