Fix playlists not included
This commit is contained in:
parent
db5c54c0ba
commit
98490e7f75
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ async def get_playlists(connection: Connection, user_email: str) -> list[Playlis
|
||||||
privacy=PlaylistPrivacy[row['privacy']],
|
privacy=PlaylistPrivacy[row['privacy']],
|
||||||
video_ids=row['video_ids'] or []
|
video_ids=row['video_ids'] or []
|
||||||
)
|
)
|
||||||
for row in await connection.fetchmany(sql, user_email)
|
for row in await connection.fetch(sql, user_email)
|
||||||
]
|
]
|
||||||
|
|
||||||
async def export_user(connection: Connection, user_email: str) -> InvidiousJsonDataExport:
|
async def export_user(connection: Connection, user_email: str) -> InvidiousJsonDataExport:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue