Mobile: Fixes #7195: Fix attaching multiple files (#7196)

pull/7296/head
Self Not Found 2022-11-14 20:28:32 +08:00 committed by GitHub
parent 456a20b8f8
commit 7d135730bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ class NoteScreenComponent extends BaseScreenComponent {
}
private async pickDocuments() {
const result = await shim.fsDriver().pickDocument();
const result = await shim.fsDriver().pickDocument({ multiple: true });
if (!result) {
console.info('pickDocuments: user has cancelled');
}