Only assign a uid to the profile if not defined by now

This commit is contained in:
Michael 2018-12-27 09:58:21 +00:00
parent 7357de411d
commit 826965f6df
1 changed files with 2 additions and 2 deletions

View File

@ -291,8 +291,8 @@ function display_content(App $a, $update = false, $update_uid = 0)
$parent = Item::selectFirst(['uid'], ['uri' => $item_parent_uri, 'wall' => true]);
if (DBA::isResult($parent)) {
$a->profile['uid'] = $parent['uid'];
$a->profile['profile_uid'] = $parent['uid'];
$a->profile['uid'] = defaults($a->profile, 'uid', $parent['uid']);
$a->profile['profile_uid'] = defaults($a->profile, 'profile_uid', $parent['uid']);
$is_remote_contact = Contact::isFollower(remote_user(), $a->profile['profile_uid']);
}