Update profile in directory when calling api_account_update_profile

This commit is contained in:
Pierre Rudloff 2017-12-26 01:08:51 +01:00
parent 94244024ac
commit c490a718ac
1 changed files with 5 additions and 0 deletions

View File

@ -4498,6 +4498,11 @@ function api_account_update_profile($type)
}
Worker::add(PRIORITY_LOW, 'ProfileUpdate', api_user());
// Update global directory in background
$url = $_SESSION['my_url'];
if ($url && strlen(Config::get('system', 'directory'))) {
Worker::add(PRIORITY_LOW, "Directory", $url);
}
return api_account_verify_credentials($type);
}