diff --git a/sigmund/__init__.py b/sigmund/__init__.py index 8ce3cbd..2e99fb2 100644 --- a/sigmund/__init__.py +++ b/sigmund/__init__.py @@ -1,3 +1,3 @@ """AI-based chatbot that provides sensible answers based on documentation""" -__version__ = '0.24.2' +__version__ = '0.24.3' diff --git a/sigmund/routes/subscribe.py b/sigmund/routes/subscribe.py index 0756d2d..ab3fcd0 100644 --- a/sigmund/routes/subscribe.py +++ b/sigmund/routes/subscribe.py @@ -158,7 +158,7 @@ def webhook(): # Attempt to get the user-specific database instance based on the # stripe customer id database = DatabaseManager.from_stripe_customer_id( - stripe_customer_id) + None, stripe_customer_id) # For new subscriptions, this fails because the link between the # stripe customer id and the sigmund user id still needs to be # established in checkout.session.completed, which is fired later.