Update app.py
Browse files
app.py
CHANGED
|
@@ -259,6 +259,7 @@ async def download_album(album_id: str):
|
|
| 259 |
io.BytesIO(zip_buffer.getvalue()),
|
| 260 |
media_type="application/zip",
|
| 261 |
headers={
|
|
|
|
| 262 |
"Content-Disposition": f"attachment; filename={album['albumName']}.zip"
|
| 263 |
}
|
| 264 |
)
|
|
|
|
| 259 |
io.BytesIO(zip_buffer.getvalue()),
|
| 260 |
media_type="application/zip",
|
| 261 |
headers={
|
| 262 |
+
"Content-Type": "application/zip",
|
| 263 |
"Content-Disposition": f"attachment; filename={album['albumName']}.zip"
|
| 264 |
}
|
| 265 |
)
|