From 38b93cd5004de084fe3091f8b1dd85ec3c688ef4 Mon Sep 17 00:00:00 2001 From: Moritz Deiaco Date: Thu, 13 Jun 2024 17:39:02 +0200 Subject: [PATCH] Cookie consent is disabled by default --- Moonlight/Core/Configuration/CoreConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moonlight/Core/Configuration/CoreConfiguration.cs b/Moonlight/Core/Configuration/CoreConfiguration.cs index c972e95e..38930921 100644 --- a/Moonlight/Core/Configuration/CoreConfiguration.cs +++ b/Moonlight/Core/Configuration/CoreConfiguration.cs @@ -153,7 +153,7 @@ public class CoreConfiguration { [JsonProperty("Enabled")] [Description("This specifies if the cookie consent banner is shown to users.")] - public bool Enabled { get; set; } = true; + public bool Enabled { get; set; } = false; [JsonProperty("BannerTitle")] [Description("The title for the cookie consent banner.")]