From 2c24e00bd7c03031a369b5f0c34e1de5f25c4cc9 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 17 Apr 2018 22:36:30 -0400 Subject: [PATCH] update some libs --- src/Core/Core.csproj | 4 ++-- src/Core/Models/Business/BillingInfo.cs | 2 +- src/EventsProcessor/EventsProcessor.csproj | 2 +- util/Function/Function.csproj | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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 - +