1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 00:22:50 -05:00

update some libs

This commit is contained in:
Kyle Spearrin
2018-04-17 22:36:30 -04:00
parent adc97f82f5
commit 2c24e00bd7
4 changed files with 5 additions and 5 deletions

View File

@ -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;
}