diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-10-20 14:24:01 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-10-20 18:02:45 +0200 |
commit | 6cd7549509f534efbdb2736a15f145dacd0223f8 (patch) | |
tree | 13e092fa3d90918bce0f6a81ba7368165e3b7888 /lib/private/Collaboration | |
parent | 3e1916080af3ec2bc2fb7fd64f127cbd0c9b8a76 (diff) | |
download | nextcloud-server-6cd7549509f534efbdb2736a15f145dacd0223f8.tar.gz nextcloud-server-6cd7549509f534efbdb2736a15f145dacd0223f8.zip |
Bump @nextcloud/vue to 3.0.0
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'lib/private/Collaboration')
-rw-r--r-- | lib/private/Collaboration/Collaborators/UserPlugin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Collaboration/Collaborators/UserPlugin.php b/lib/private/Collaboration/Collaborators/UserPlugin.php index 0b3a279182b..cd4963197ae 100644 --- a/lib/private/Collaboration/Collaborators/UserPlugin.php +++ b/lib/private/Collaboration/Collaborators/UserPlugin.php @@ -156,7 +156,7 @@ class UserPlugin implements ISearchPlugin { } $result['exact'][] = [ 'label' => $userDisplayName, - 'subline' => $status['message'], + 'subline' => $status['message'] ?? '', 'icon' => 'icon-user', 'value' => [ 'shareType' => IShare::TYPE_USER, @@ -180,7 +180,7 @@ class UserPlugin implements ISearchPlugin { if ($addToWideResults) { $result['wide'][] = [ 'label' => $userDisplayName, - 'subline' => $status['message'], + 'subline' => $status['message'] ?? '', 'icon' => 'icon-user', 'value' => [ 'shareType' => IShare::TYPE_USER, @@ -222,7 +222,7 @@ class UserPlugin implements ISearchPlugin { $result['exact'][] = [ 'label' => $user->getDisplayName(), 'icon' => 'icon-user', - 'subline' => $status['message'], + 'subline' => $status['message'] ?? '', 'value' => [ 'shareType' => IShare::TYPE_USER, 'shareWith' => $user->getUID(), |