forked from mystiq/hydrogen-web
fix typos/refactor errors
This commit is contained in:
parent
65d02072c8
commit
e2dd9b9f77
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue