From f25134d087bd7c3f5455c529c302c870b4772ba4 Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Thu, 25 Jun 2026 02:20:13 +1000 Subject: General code cleanup --- Services/MediaService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Services/MediaService.cs') 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 ]); -- cgit v1.3