diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-01-10 17:01:17 -0700 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2022-01-10 17:01:17 -0700 |
| commit | 8a36fe7ed51d1a1da7c629e10ff9eebf81cf9785 (patch) | |
| tree | b7a7a63b728d63d534da29d5ba8c7b220116ad4a /Jellyfin.Api/Controllers/ImageController.cs | |
| parent | 0d335082c8cf541637f4bcae1dc0399f649d24ce (diff) | |
Use png for storage
Diffstat (limited to 'Jellyfin.Api/Controllers/ImageController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/ImageController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/ImageController.cs b/Jellyfin.Api/Controllers/ImageController.cs index 7cc526d21..5997ac549 100644 --- a/Jellyfin.Api/Controllers/ImageController.cs +++ b/Jellyfin.Api/Controllers/ImageController.cs @@ -1747,7 +1747,7 @@ namespace Jellyfin.Api.Controllers } else { - splashscreenPath = Path.Combine(_appPaths.DataPath, "splashscreen.webp"); + splashscreenPath = Path.Combine(_appPaths.DataPath, "splashscreen.png"); if (!System.IO.File.Exists(splashscreenPath)) { return NotFound(); |
