We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270ffd8 commit 4f0a33fCopy full SHA for 4f0a33f
horde/database/threads.py
@@ -384,7 +384,11 @@ def store_stripe_members():
384
"product_name": subscription["product_name"],
385
"email": subscription["customer_email"],
386
"name": subscription["name"],
387
- "horde_id": subscription["metadata"].get("horde"),
+ "horde_id": (
388
+ subscription["metadata"].get("horde_id")
389
+ if subscription["metadata"].get("horde_id")
390
+ else subscription["metadata"].get("horde")
391
+ ),
392
"alias": subscription["metadata"].get("alias"),
393
"sponsor_link": subscription["metadata"].get("sponsor_link"),
394
"status": subscription["status"],
0 commit comments