summaryrefslogtreecommitdiff
path: root/Services
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 12:25:05 +1000
commitf25134d087bd7c3f5455c529c302c870b4772ba4 (patch)
treeb01108c7d671ac101ca41faf78fb9c54af247ac9 /Services
parentd0d324ede91589d1e49a9a0728e5e5408262697b (diff)
General code cleanup
Diffstat (limited to 'Services')
-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 ]);