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() { async _sendFile() {
let file; let file;
try { try {
file = this.platform.openFile(); file = await this.platform.openFile();
} catch (err) { } catch (err) {
return; return;
} }
const attachment = this._room.uploadAttachment(file.name, file.blob); const attachment = this._room.uploadAttachment(file.blob, file.name);
const content = { const content = {
body: file.name, body: file.name,
msgtype: "m.file", msgtype: "m.file",