diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-04 16:01:10 -0400 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-04 16:01:10 -0400 |
| commit | efe3ebaab8fbb064652ac4923297f315e4a798e7 (patch) | |
| tree | 79d30799e325aef65365f26985d723aae7d720a5 /Emby.Photos | |
| parent | 11693d6024f4b8dafb69ac4a4fcb85ee2caad065 (diff) | |
Eliminate circular dependency between LibraryManager and ImageProcessor
Diffstat (limited to 'Emby.Photos')
| -rw-r--r-- | Emby.Photos/PhotoProvider.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Photos/PhotoProvider.cs b/Emby.Photos/PhotoProvider.cs index 63631e512..987cb7fb2 100644 --- a/Emby.Photos/PhotoProvider.cs +++ b/Emby.Photos/PhotoProvider.cs @@ -160,7 +160,7 @@ namespace Emby.Photos try { - var size = _imageProcessor.GetImageDimensions(item, img, false); + var size = _imageProcessor.GetImageDimensions(item, img); if (size.Width > 0 && size.Height > 0) { |
