diff --git a/src/Core/Core.csproj b/src/Core/Core.csproj index 0533cb5f95..588eed179f 100644 --- a/src/Core/Core.csproj +++ b/src/Core/Core.csproj @@ -73,14 +73,14 @@ - + - + diff --git a/src/Core/Models/Business/BillingInfo.cs b/src/Core/Models/Business/BillingInfo.cs index 9da8207c7a..64a2ea128a 100644 --- a/src/Core/Models/Business/BillingInfo.cs +++ b/src/Core/Models/Business/BillingInfo.cs @@ -164,7 +164,7 @@ namespace Bit.Core.Models.Business if(item.Plan != null) { Name = item.Plan.Nickname; - Amount = item.Plan.Amount / 100M; + Amount = item.Plan.Amount.GetValueOrDefault() / 100M; Interval = item.Plan.Interval; } diff --git a/src/EventsProcessor/EventsProcessor.csproj b/src/EventsProcessor/EventsProcessor.csproj index 929d3e744b..1cd3993548 100644 --- a/src/EventsProcessor/EventsProcessor.csproj +++ b/src/EventsProcessor/EventsProcessor.csproj @@ -6,7 +6,7 @@ - + diff --git a/util/Function/Function.csproj b/util/Function/Function.csproj index f39bb60ea3..d961396989 100644 --- a/util/Function/Function.csproj +++ b/util/Function/Function.csproj @@ -4,7 +4,7 @@ Bit.Function - +