fixed panic on bad reblog

This commit is contained in:
qugalet 2023-07-13 15:47:26 +03:00
parent a9a8b6a750
commit 64d6334971

View file

@ -131,4 +131,6 @@ async function main() {
await db.$connect();
await matrix.start();
}
main().then(() => console.log('everything started!'));
main()
.then(() => console.log('everything started!'))
.catch(e => console.error(e));