diff options
Diffstat (limited to 'Services')
| -rw-r--r-- | Services/MediaService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Services/MediaService.cs b/Services/MediaService.cs index 1cfc345..5326faf 100644 --- a/Services/MediaService.cs +++ b/Services/MediaService.cs @@ -304,7 +304,7 @@ public class MediaService : IMediaService { var thumbPath = GetThumbnailPath(mediaId, width, height); if(File.Exists(thumbPath)) - return System.IO.File.OpenRead(thumbPath); + return File.OpenRead(thumbPath); if(!File.Exists(GetPath(mediaId))) throw new ObjectNotFoundException([ mediaId ]); |
