summaryrefslogtreecommitdiff
path: root/Services/MediaService.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-06-25 02:20:13 +1000
committerJake Mannens <jake@asger.xyz>2026-06-25 02:43:41 +1000
commit9225459eb17cc2b3056033b7f15b86f1114aaed2 (patch)
tree9595e5a0ef2a264f3d87e003f987cbaafad3fab8 /Services/MediaService.cs
parent7441f81672f5ddbc28c988b0e4046d25139a58ad (diff)
General code cleanup
Diffstat (limited to 'Services/MediaService.cs')
-rw-r--r--Services/MediaService.cs2
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 ]);