diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-06-25 02:20:13 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-06-25 12:25:05 +1000 |
| commit | f25134d087bd7c3f5455c529c302c870b4772ba4 (patch) | |
| tree | b01108c7d671ac101ca41faf78fb9c54af247ac9 /Services/MediaService.cs | |
| parent | d0d324ede91589d1e49a9a0728e5e5408262697b (diff) | |
General code cleanup
Diffstat (limited to 'Services/MediaService.cs')
| -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 ]); |
