mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-12 11:44:28 +02:00
Merge remote-tracking branch 'upstream/develop' into enqueue-posts
This commit is contained in:
commit
abf39ff9cf
12 changed files with 2101 additions and 1933 deletions
|
@ -221,7 +221,7 @@ class Profile
|
|||
public static function load(App $a, string $nickname, bool $show_contacts = true)
|
||||
{
|
||||
$profile = User::getOwnerDataByNick($nickname);
|
||||
if (empty($profile) || $profile['account_removed']) {
|
||||
if (!isset($profile['account_removed']) || $profile['account_removed']) {
|
||||
Logger::info('profile error: ' . DI::args()->getQueryString());
|
||||
return [];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue