[ADD] Bare JIDs, use room nicks

This commit is contained in:
LDA 2024-06-28 11:09:21 +02:00
commit e21785afcb
8 changed files with 151 additions and 16 deletions

View file

@ -63,6 +63,9 @@ Main(void)
goto end;
}
}
Log(LOG_NOTICE, "Creating JID table...");
ParseeInitialiseJIDTable();
Log(LOG_NOTICE, "Setting up local Matrix user...");
ASRegisterUser(parsee_conf, parsee_conf->sender_localpart);
@ -111,5 +114,6 @@ end:
CronStop(cron);
CronFree(cron);
ParseeFreeData(conf.handlerArgs);
ParseeDestroyJIDTable();
return 0;
}