Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 0cbccf2

Browse files
fix: Fix stripe invoice time bounding param names
1 parent 136300e commit 0cbccf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/billing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ def cancel_and_refund(
175175
subscription=owner.stripe_subscription_id,
176176
status="paid",
177177
created={
178-
"created.gte": int(start_of_last_period.timestamp()),
179-
"created.lt": int(current_subscription_datetime.timestamp()),
178+
"gte": int(start_of_last_period.timestamp()),
179+
"lt": int(current_subscription_datetime.timestamp()),
180180
},
181181
)
182182

0 commit comments

Comments
 (0)