user.billing: add stub to subscription.items

This commit is contained in:
Luna 2021-08-29 19:29:53 -03:00
parent b4b54379e1
commit 60b7216aac
1 changed files with 2 additions and 0 deletions

View File

@ -217,6 +217,8 @@ async def get_subscription(subscription_id: int):
for field in to_tstamp: for field in to_tstamp:
drow[field] = timestamp_(drow[field]) drow[field] = timestamp_(drow[field])
drow["items"] = []
return drow return drow