瀏覽代碼

Handle cases where default payment method might not be specified

vishnukvmd 1 年之前
父節點
當前提交
2dcf5daf54
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      server/pkg/controller/stripe.go

+ 6 - 1
server/pkg/controller/stripe.go

@@ -518,7 +518,12 @@ func (c *StripeController) UpdateSubscription(stripeID string, userID int64) (en
 	if err != nil {
 		return ente.SubscriptionUpdateResponse{}, stacktrace.Propagate(err, "")
 	}
-	isSEPA := stripeSubscription.DefaultPaymentMethod.Type == stripe.PaymentMethodTypeSepaDebit
+	isSEPA := false
+	if stripeSubscription.DefaultPaymentMethod != nil {
+		isSEPA = stripeSubscription.DefaultPaymentMethod.Type == stripe.PaymentMethodTypeSepaDebit
+	} else {
+		log.Info("No default payment method found")
+	}
 	var paymentBehavior stripe.SubscriptionPaymentBehavior
 	if isSEPA {
 		paymentBehavior = stripe.SubscriptionPaymentBehaviorAllowIncomplete