Fix missing await (#19273)

master
Yamagishi Kazutoshi 2022-10-04 06:08:38 +09:00 committed by GitHub
parent 216dbaedaf
commit fc3d248df7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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 => {