Remove unnecessary awaits

This commit is contained in:
Jaiwanth 2021-07-30 11:46:55 +05:30
parent 6f8f0e8314
commit 04edf4103f
4 changed files with 19 additions and 4 deletions

View file

@ -134,7 +134,7 @@ export default class PlainTextExporter extends Exporter {
await this.downloadZIP();
} else {
const fileName = `matrix-export-${formatFullDateNoDay(new Date())}.txt`;
await this.downloadPlainText(fileName, text);
this.downloadPlainText(fileName, text);
}
const exportEnd = performance.now();