Skip to content

Commit

Permalink
fixed stringed variable error for sessionID
Browse files Browse the repository at this point in the history
  • Loading branch information
TeisNP committed Feb 1, 2024
1 parent 0fff6bb commit 8324c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/billing/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (s *ServiceImpl) GetCheckoutSession(sessionID string) (*stripe.CheckoutSess

func (s *ServiceImpl) GetLineItems(sessionID string) *session.LineItemIter {
params := &stripe.CheckoutSessionListLineItemsParams{
Session: stripe.String("sessionID"),
Session: stripe.String(sessionID),
}
return session.ListLineItems(params)
}
Expand Down

0 comments on commit 8324c3f

Please sign in to comment.