Skip to content

Commit 4860967

Browse files
authored
Merge pull request #51416 from nextcloud/backport/51384/stable30
[stable30] fix(lookup-server): Only flag new users for lookup update / delete
2 parents a5c74cf + 16ef867 commit 4860967

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

core/BackgroundJobs/LookupServerSendCheckBackgroundJob.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ public function __construct(
2828
*/
2929
public function run($argument): void {
3030
$this->userManager->callForSeenUsers(function (IUser $user) {
31-
$this->config->setUserValue($user->getUID(), 'lookup_server_connector', 'dataSend', '1');
31+
// If the user data was not updated yet (check if LUS is enabled and if then update on LUS or delete on LUS)
32+
// then we need to flag the user data to be checked
33+
if ($this->config->getUserValue($user->getUID(), 'lookup_server_connector', 'dataSend', '') === '') {
34+
$this->config->setUserValue($user->getUID(), 'lookup_server_connector', 'dataSend', '1');
35+
}
3236
});
3337
}
3438
}

0 commit comments

Comments
 (0)