fix typos/refactor errors

This commit is contained in:
Bruno Windels 2020-11-11 11:47:13 +01:00
parent 65d02072c8
commit e2dd9b9f77

View file

@ -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",