1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-10 22:11:50 +02:00

Mobile: Resolves #12858: Fixed missing filename when a file is shared with the app (#12895)

This commit is contained in:
klaas0
2025-08-06 11:22:47 +02:00
committed by GitHub
parent c60b703b9c
commit 4e685ec687

View File

@@ -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);
}
}