aboutsummaryrefslogtreecommitdiff
path: root/Emby.Photos/PhotoProvider.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-31 03:47:34 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-31 03:47:34 -0400
commit8b7a8ab3963b1a55bc194767cc834c8cf43836a7 (patch)
treea4b27490f4d177090a79404ed89fd63b7fc77a76 /Emby.Photos/PhotoProvider.cs
parent9c813f9aedb3d4f20ff495fc23693591e7dda914 (diff)
make photos project portable
Diffstat (limited to 'Emby.Photos/PhotoProvider.cs')
-rw-r--r--Emby.Photos/PhotoProvider.cs2
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;