From 4e685ec687599e131821cd26cb9d14b35eec3d63 Mon Sep 17 00:00:00 2001 From: klaas0 <37308015+klaas0@users.noreply.github.com> Date: Wed, 6 Aug 2025 11:22:47 +0200 Subject: [PATCH] Mobile: Resolves #12858: Fixed missing filename when a file is shared with the app (#12895) --- packages/lib/components/shared/note-screen-shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lib/components/shared/note-screen-shared.ts b/packages/lib/components/shared/note-screen-shared.ts index 1aafa361ab..98c627cef4 100644 --- a/packages/lib/components/shared/note-screen-shared.ts +++ b/packages/lib/components/shared/note-screen-shared.ts @@ -349,7 +349,7 @@ shared.initState = async function(comp: BaseNoteScreenComponent) { await comp.attachFile({ uri: resource.uri, type: resource.mimeType, - name: resource.name, + fileName: resource.name, }, null); } }