From 5d49e534167219f87c26f4ac1cc6d524235ec037 Mon Sep 17 00:00:00 2001 From: Vins Date: Wed, 12 Jun 2024 15:13:34 +0200 Subject: [PATCH] Fixed office name --- src/app/api/notary/OfficeFolderAnchorsController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/notary/OfficeFolderAnchorsController.ts b/src/app/api/notary/OfficeFolderAnchorsController.ts index f43c28d8..459f19f4 100644 --- a/src/app/api/notary/OfficeFolderAnchorsController.ts +++ b/src/app/api/notary/OfficeFolderAnchorsController.ts @@ -87,7 +87,7 @@ export default class OfficeFoldersController extends ApiController { } const sortedHashes = [...folderHashes].sort(); - const anchoringProof = await this.secureService.download(sortedHashes, officeFolder.name); + const anchoringProof = await this.secureService.download(sortedHashes, officeFolder.office!.name); const addFileToZip = (zip: Zip) => (uid: string): Promise => (async () => {