Skip to content

Commit

Permalink
fix image methods
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Oct 27, 2016
1 parent 5dee3dd commit a647f07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private async Task<IEnumerable<RemoteImageInfo>> GetImages(IHasImages item, bool

private RemoteImageInfo GetImage(IHasImages item, string filename, ImageType type, string remoteFilename)
{
var list = ImageUtils.GetAvailableImages(filename);
var list = ImageUtils.GetAvailableImages(filename, _fileSystem);

var match = ImageUtils.FindMatch(item, list);

Expand Down
2 changes: 1 addition & 1 deletion MediaBrowser.Providers/Genres/GenreImageProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private async Task<IEnumerable<RemoteImageInfo>> GetImages(IHasImages item, bool

private RemoteImageInfo GetImage(IHasImages item, string filename, ImageType type, string remoteFilename)
{
var list = ImageUtils.GetAvailableImages(filename);
var list = ImageUtils.GetAvailableImages(filename, _fileSystem);

var match = ImageUtils.FindMatch(item, list);

Expand Down
2 changes: 1 addition & 1 deletion MediaBrowser.Providers/Studios/StudiosImageProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private async Task<IEnumerable<RemoteImageInfo>> GetImages(IHasImages item, bool

private RemoteImageInfo GetImage(IHasImages item, string filename, ImageType type, string remoteFilename)
{
var list = ImageUtils.GetAvailableImages(filename);
var list = ImageUtils.GetAvailableImages(filename, _fileSystem);

var match = ImageUtils.FindMatch(item, list);

Expand Down

0 comments on commit a647f07

Please sign in to comment.