Skip to content

Commit

Permalink
server/transaction: add yet another Stripe fee
Browse files Browse the repository at this point in the history
  • Loading branch information
frankie567 committed Jan 8, 2025
1 parent 590305a commit 78cf1eb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/polar/transaction/service/processor_fee.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ def _get_stripe_processor_fee_type(description: str) -> ProcessorFeeType:
return ProcessorFeeType.security
if "3d secure" in description:
return ProcessorFeeType.payment
if "authorization optimization" in description:
return ProcessorFeeType.payment
raise UnsupportedStripeFeeType(description)


Expand Down

0 comments on commit 78cf1eb

Please sign in to comment.