From 8b10bfe3a815676e269570405035e93ff7c230bf Mon Sep 17 00:00:00 2001
From: Pierre Rudloff <contact@rudloff.pro>
Date: Tue, 26 Dec 2017 21:49:43 +0100
Subject: [PATCH] Cleaner way to get user URL in api_account_update_profile

---
 include/api.php | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/include/api.php b/include/api.php
index e2d35d59df..f52b664aa1 100644
--- a/include/api.php
+++ b/include/api.php
@@ -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);