From bb5dc0dcaeb22d9441b5b32d24afcb813c690a04 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Wed, 21 Jul 2021 19:01:31 +0200 Subject: [PATCH] Fixing the composite of IFileSystem.FileResult --- Kyoo/Controllers/FileSystems/FileSystemComposite.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kyoo/Controllers/FileSystems/FileSystemComposite.cs b/Kyoo/Controllers/FileSystems/FileSystemComposite.cs index f2f87a02..da98539f 100644 --- a/Kyoo/Controllers/FileSystems/FileSystemComposite.cs +++ b/Kyoo/Controllers/FileSystems/FileSystemComposite.cs @@ -76,7 +76,7 @@ namespace Kyoo.Controllers if (path == null) return new NotFoundResult(); return _GetFileSystemForPath(path, out string relativePath) - .FileResult(relativePath); + .FileResult(relativePath, rangeSupport, type); } ///