Fix missing await (#19273)
This commit is contained in:
parent
216dbaedaf
commit
fc3d248df7
1 changed files with 1 additions and 1 deletions
|
@ -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 => {
|
||||
|
|
Loading…
Reference in a new issue