Fix playlists not included

This commit is contained in:
Minecon724 2025-06-14 18:22:02 +02:00
commit 98490e7f75
Signed by: Minecon724
GPG key ID: A02E6E67AB961189

View file

@ -28,7 +28,7 @@ async def get_playlists(connection: Connection, user_email: str) -> list[Playlis
privacy=PlaylistPrivacy[row['privacy']],
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: