mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 19:14:52 +01:00
fix typos/refactor errors
This commit is contained in:
parent
65d02072c8
commit
e2dd9b9f77
@ -167,11 +167,11 @@ export class RoomViewModel extends ViewModel {
|
||||
async _sendFile() {
|
||||
let file;
|
||||
try {
|
||||
file = this.platform.openFile();
|
||||
file = await this.platform.openFile();
|
||||
} catch (err) {
|
||||
return;
|
||||
}
|
||||
const attachment = this._room.uploadAttachment(file.name, file.blob);
|
||||
const attachment = this._room.uploadAttachment(file.blob, file.name);
|
||||
const content = {
|
||||
body: file.name,
|
||||
msgtype: "m.file",
|
||||
|
Loading…
Reference in New Issue
Block a user