From 79e121c3af7bb3e4603a9e304c7a976a80788ba3 Mon Sep 17 00:00:00 2001 From: rockstardev <5191402+rockstardev@users.noreply.github.com> Date: Wed, 26 Jul 2023 09:45:29 -0500 Subject: [PATCH] Disabling playing of the invoice sound for existing stores --- BTCPayServer/Data/StoreBlob.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Data/StoreBlob.cs b/BTCPayServer/Data/StoreBlob.cs index bbb5fedb2..aed121b33 100644 --- a/BTCPayServer/Data/StoreBlob.cs +++ b/BTCPayServer/Data/StoreBlob.cs @@ -238,7 +238,7 @@ namespace BTCPayServer.Data [JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)] public bool CelebratePayment { get; set; } = true; - [DefaultValue(true)] + [DefaultValue(false)] [JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)] public bool PlaySoundOnPayment { get; set; } = false;