diff --git a/BTCPayServer/HostedServices/AppInventoryUpdaterHostedService.cs b/BTCPayServer/HostedServices/AppInventoryUpdaterHostedService.cs index 6a89c9e13..49e9e2515 100644 --- a/BTCPayServer/HostedServices/AppInventoryUpdaterHostedService.cs +++ b/BTCPayServer/HostedServices/AppInventoryUpdaterHostedService.cs @@ -136,6 +136,11 @@ namespace BTCPayServer.HostedServices public string[] AppId { get; set; } public Dictionary Items { get; set; } public bool Deduct { get; set; } + + public override string ToString() + { + return string.Empty; + } } } }