Fix missing await (#19273)

This commit is contained in:
Yamagishi Kazutoshi
2022-10-04 06:08:38 +09:00
committed by GitHub
parent 216dbaedaf
commit fc3d248df7

View File

@@ -5,7 +5,7 @@ import { start } from '../mastodon/common';
start();
loadPolyfills().then(async () => {
const { default: main } = import('mastodon/main');
const { default: main } = await import('mastodon/main');
return main();
}).catch(e => {