diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-06-25 02:20:13 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-06-25 02:43:41 +1000 |
| commit | 9225459eb17cc2b3056033b7f15b86f1114aaed2 (patch) | |
| tree | 9595e5a0ef2a264f3d87e003f987cbaafad3fab8 | |
| parent | 7441f81672f5ddbc28c988b0e4046d25139a58ad (diff) | |
General code cleanup
| -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 ]); |
