We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdc2e28 commit 2c73a30Copy full SHA for 2c73a30
backend/btrixcloud/orgs.py
@@ -552,7 +552,7 @@ async def is_subscription_activated(self, sub_id: str) -> bool:
552
"""return true if subscription for this org was 'activated', eg. at least
553
one user has signed up and changed the slug
554
"""
555
- org_data = await self.orgs.find_one({"subscription.subId", sub_id})
+ org_data = await self.orgs.find_one({"subscription.subId": sub_id})
556
if not org_data:
557
return False
558
0 commit comments