Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Folder/FolderManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ public function searchUsers(int $id, string $search = '', int $limit = 10, int $
foreach ($foundUsers as $uid => $displayName) {
if (!isset($users[$uid])) {
$users[$uid] = [
'uid' => (string)$uid,
'uid' => $uid,
'displayname' => $displayName,
];
}
Expand Down
2 changes: 0 additions & 2 deletions lib/Mount/GroupFolderStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ class GroupFolderStorage extends Quota implements IConstructableStorage {
private readonly ?ICacheEntry $rootEntry;
private readonly IUserSession $userSession;
private readonly ?IUser $mountOwner;
/** @var ICache|null */
public $cache;

public function __construct(array $parameters) {
parent::__construct($parameters);
Expand Down
Loading