1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Mobile: Fix incorrect field name when attaching a resource from share (#4557)

This commit is contained in:
Roman Musin 2021-02-23 11:03:09 +00:00 committed by GitHub
parent da9da7ec62
commit 38e91ea1f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -232,7 +232,7 @@ shared.initState = async function(comp) {
await comp.attachFile({
uri: resource.uri,
type: resource.mimeType,
fileName: resource.name,
name: resource.name,
}, null);
}
}