diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-31 03:47:34 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-31 03:47:34 -0400 |
| commit | 8b7a8ab3963b1a55bc194767cc834c8cf43836a7 (patch) | |
| tree | a4b27490f4d177090a79404ed89fd63b7fc77a76 /Emby.Photos/PhotoProvider.cs | |
| parent | 9c813f9aedb3d4f20ff495fc23693591e7dda914 (diff) | |
make photos project portable
Diffstat (limited to 'Emby.Photos/PhotoProvider.cs')
| -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 c088ac8644..006f29c2fa 100644 --- a/Emby.Photos/PhotoProvider.cs +++ b/Emby.Photos/PhotoProvider.cs @@ -35,7 +35,7 @@ namespace Emby.Photos try { - using (var file = TagLib.File.Create(new StreamFileAbstraction(Path.GetFileName(item.Path), _fileSystem.OpenRead(item.Path)))) + using (var file = TagLib.File.Create(new StreamFileAbstraction(Path.GetFileName(item.Path), _fileSystem.OpenRead(item.Path), null))) { var image = file as TagLib.Image.File; |
