Decoupling is deactivated by default now

This commit is contained in:
Michael 2022-07-31 07:48:35 +00:00
parent da06878f6c
commit 371f20a1aa
2 changed files with 4 additions and 2 deletions

View file

@ -93,7 +93,9 @@ class Cron
Queue::clear();
// Process all unprocessed entries
Queue::processAll();
if (DI::config()->get('system', 'decoupled_receiver')) {
Queue::processAll();
}
// Search for new contacts in the directory
if (DI::config()->get('system', 'synchronize_directory')) {