DDB-1753: fix response

This commit is contained in:
cherednik 2025-03-21 13:40:10 +04:00
parent 82ae1cbdf8
commit 6533368534
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class DigitalSignatureController extends AbstractController
return $this->createJsonResponse(
[
'hash' => $response->hash,
'content' => $response->content,
'content' => base64_encode($response->content),
]
);
}