Fix error in stripe get_customer_id_for

This commit is contained in:
fnux 2020-03-05 11:28:20 +01:00
parent 7e58a8ace2
commit 31507c0f1a
1 changed files with 1 additions and 3 deletions

View File

@ -75,9 +75,7 @@ def get_customer_id_for(user):
try:
customer = create_customer(user.username, user.email)
uncloud_stripe_mapping = uncloud_pay.models.StripeCustomer.objects.create(
owner=user,
stripe_id=customer_request['response_object']['id']
)
owner=user, stripe_id=customer.id)
return uncloud_stripe_mapping.stripe_id
except Exception as e:
return None