[MOD] Make the cleanup *do a thing*.

This commit is contained in:
LDA 2024-06-23 21:14:07 +02:00
commit 10e140e2a2
5 changed files with 62 additions and 2 deletions

View file

@ -77,6 +77,8 @@ Main(void)
cron = CronCreate( 10 SECONDS );
CronEvery(cron, 30 MINUTES, ParseeCleanup, conf.handlerArgs);
CronStart(cron);
Log(LOG_NOTICE, "Creating XMPP listener thread...");
if (pthread_create(&xmpp_thr, NULL, ParseeXMPPThread, conf.handlerArgs))
{