diff options
| author | Dmitry Lyzo <ashephard0@gmail.com> | 2023-01-22 14:05:38 -0500 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2023-01-22 14:05:38 -0500 |
| commit | 2b1a7ddd32576b87c6c0c799d42c6fc07351c23d (patch) | |
| tree | fd31d231fd0d251a77c4979a4681885f6e29a289 | |
| parent | 28b98cacc8e96455a600153388bfdddc940b9992 (diff) | |
Backport pull request #9060 from jellyfin/release-10.8.z
Disable splash screen image by default
Original-merge: 31673cc27d0bfcb3543d32c5a1e7d89a86ccb186
Merged-by: Bill Thornton <thornbill@users.noreply.github.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
| -rw-r--r-- | MediaBrowser.Model/Branding/BrandingOptions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Branding/BrandingOptions.cs b/MediaBrowser.Model/Branding/BrandingOptions.cs index 695267d46..c6580598b 100644 --- a/MediaBrowser.Model/Branding/BrandingOptions.cs +++ b/MediaBrowser.Model/Branding/BrandingOptions.cs @@ -22,7 +22,7 @@ public class BrandingOptions /// <summary> /// Gets or sets a value indicating whether to enable the splashscreen. /// </summary> - public bool SplashscreenEnabled { get; set; } = true; + public bool SplashscreenEnabled { get; set; } = false; /// <summary> /// Gets or sets the splashscreen location on disk. |
