aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/SubtitleController.cs
diff options
context:
space:
mode:
authornyanmisaka <nst799610810@gmail.com>2020-11-08 19:33:40 +0800
committernyanmisaka <nst799610810@gmail.com>2020-11-08 19:33:40 +0800
commit2229ca38aca0d3007473a52c9560cec0bac8ac05 (patch)
tree75a5e225c85cf99070dbf8a1e1bf38d2831f14ac /Jellyfin.Api/Controllers/SubtitleController.cs
parent737cb727f9f943f8bb55fca8a5c5023a98aca2d7 (diff)
pascal case
Diffstat (limited to 'Jellyfin.Api/Controllers/SubtitleController.cs')
-rw-r--r--Jellyfin.Api/Controllers/SubtitleController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/SubtitleController.cs b/Jellyfin.Api/Controllers/SubtitleController.cs
index 4c9a15384..a01ae31a0 100644
--- a/Jellyfin.Api/Controllers/SubtitleController.cs
+++ b/Jellyfin.Api/Controllers/SubtitleController.cs
@@ -459,7 +459,7 @@ namespace Jellyfin.Api.Controllers
if (fontFile != null && fileSize != null && fileSize > 0)
{
- _logger.LogDebug("Fallback font size is {FileSize} Bytes", fileSize);
+ _logger.LogDebug("Fallback font size is {fileSize} Bytes", fileSize);
return PhysicalFile(fontFile.FullName, MimeTypes.GetMimeType(fontFile.FullName));
}
else