1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-26 12:55:17 +01:00

filter canceled orgs

This commit is contained in:
Kyle Spearrin 2019-02-16 16:08:12 -05:00
parent 594c9e9e3e
commit 7d36a0d398

View File

@ -205,6 +205,8 @@ namespace Bit.Billing.Controllers
CustomerId = charge.CustomerId
});
foreach(var sub in subscriptions)
{
if(sub.Status != "canceled")
{
ids = GetIdsFromMetaData(sub.Metadata);
if(ids.Item1.HasValue || ids.Item2.HasValue)
@ -214,6 +216,7 @@ namespace Bit.Billing.Controllers
}
}
}
}
if(ids.Item1.HasValue || ids.Item2.HasValue)
{