mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-25 05:55:19 +01:00
Fix missing await (#19273)
This commit is contained in:
parent
216dbaedaf
commit
fc3d248df7
@ -5,7 +5,7 @@ import { start } from '../mastodon/common';
|
|||||||
start();
|
start();
|
||||||
|
|
||||||
loadPolyfills().then(async () => {
|
loadPolyfills().then(async () => {
|
||||||
const { default: main } = import('mastodon/main');
|
const { default: main } = await import('mastodon/main');
|
||||||
|
|
||||||
return main();
|
return main();
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
|
Loading…
Reference in New Issue
Block a user