6
2
Fork 0
espelhamento de https://github.com/friendica/friendica sincronizado 2025-09-01 21:11:11 +02:00

Cleaner way to get user URL in api_account_update_profile

Esse commit está contido em:
Pierre Rudloff 2017-12-26 21:49:43 +01:00
commit 8b10bfe3a8

Ver arquivo

@ -4497,11 +4497,10 @@ function api_account_update_profile($type)
dba::update('contact', ['about' => $_POST['description']], ['id' => $api_user['id']]);
}
Worker::add(PRIORITY_LOW, 'ProfileUpdate', api_user());
Worker::add(PRIORITY_LOW, 'ProfileUpdate', $local_user);
// Update global directory in background
$url = $_SESSION['my_url'];
if ($url && strlen(Config::get('system', 'directory'))) {
Worker::add(PRIORITY_LOW, "Directory", $url);
if ($api_user['url'] && strlen(Config::get('system', 'directory'))) {
Worker::add(PRIORITY_LOW, "Directory", $api_user['url']);
}
return api_account_verify_credentials($type);