Фиксы
All checks were successful
Build And Push / publish (push) Successful in 3m36s

This commit is contained in:
2026-04-15 13:50:19 +03:00
parent ce8b0238ce
commit 80badc38db
4 changed files with 12 additions and 4 deletions

View File

@ -126,7 +126,7 @@ async def get_vaccs_report_download(
{
'filename': filename,
'content_type': 'application/msword',
'data': file_bytes,
'data': base64.b64encode(file_bytes).decode('utf-8'),
}
),
ex=600,
@ -312,7 +312,7 @@ async def get_aemd_file_download(
{
'filename': filename,
'content_type': 'application/pdf',
'data': pdf_bytes,
'data': base64.b64encode(pdf_bytes).decode('utf-8'),
}
),
ex=600,