Add await

pull/21833/head
Jaiwanth 2021-06-02 13:12:03 +05:30
parent 692e499cf2
commit f84ae4a173
1 changed files with 4 additions and 4 deletions

View File

@ -213,9 +213,9 @@ export default class HTMLExporter extends Exporter {
} }
protected getEventTile(mxEv: MatrixEvent, continuation: boolean, mediaSrc?: string) { protected async getEventTile(mxEv: MatrixEvent, continuation: boolean, mediaSrc?: string) {
const hasAvatar = this.hasAvatar(mxEv); const hasAvatar = this.hasAvatar(mxEv);
if (hasAvatar) this.saveAvatarIfNeeded(mxEv); if (hasAvatar) await this.saveAvatarIfNeeded(mxEv);
return <li className="mx_Export_EventWrapper" id={mxEv.getId()}> return <li className="mx_Export_EventWrapper" id={mxEv.getId()}>
<EventTile <EventTile
@ -252,9 +252,9 @@ export default class HTMLExporter extends Exporter {
if (mxEv.getType() === attachmentTypes[0] || attachmentTypes.includes(mxEv.getContent().msgtype)) { if (mxEv.getType() === attachmentTypes[0] || attachmentTypes.includes(mxEv.getContent().msgtype)) {
const blob = await this.getMediaBlob(mxEv); const blob = await this.getMediaBlob(mxEv);
const filePath = this.getFilePath(mxEv); const filePath = this.getFilePath(mxEv);
eventTile = this.getEventTile(mxEv, joined, filePath); eventTile = await this.getEventTile(mxEv, joined, filePath);
this.zip.file(filePath, blob); this.zip.file(filePath, blob);
} else eventTile = this.getEventTile(mxEv, joined); } else eventTile = await this.getEventTile(mxEv, joined);
return renderToStaticMarkup(eventTile); return renderToStaticMarkup(eventTile);
} }