Merge branch 'main' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2022-10-08 15:49:40 +02:00
110 changed files with 495 additions and 474 deletions

View File

@@ -4,8 +4,10 @@ import { start } from '../mastodon/common';
start();
loadPolyfills().then(() => {
require('../mastodon/main').default();
loadPolyfills().then(async () => {
const { default: main } = await import('mastodon/main');
return main();
}).catch(e => {
console.error(e);
});