Skip to content

Commit

Permalink
IMN-843 - Fix file verification with properly name with extension (#1031
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Viktor-K authored Sep 26, 2024
1 parent 5fb1588 commit 3f6f7a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export const verifyAndCreateImportedDoc = async (
throw genericError("Invalid file");
}

const file = new File([entry.getData()], doc.prettyName, {
const file = new File([entry.getData()], doc.path, {
type: mimeType,
});

Expand Down

0 comments on commit 3f6f7a4

Please sign in to comment.