diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-09-16 18:13:54 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-12-20 06:15:32 +0000 |
commit | a24460d8da3340ac37d7852d89e677c6853f96d7 (patch) | |
tree | 895c1163f136f3cf9785c0361287c77827b8ce28 | |
parent | fd95d1e3638961d286712da4732c08ccbddf257f (diff) | |
download | nextcloud-server-a24460d8da3340ac37d7852d89e677c6853f96d7.tar.gz nextcloud-server-a24460d8da3340ac37d7852d89e677c6853f96d7.zip |
chore: Add comment to make code clearer
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rw-r--r-- | lib/private/Share20/Manager.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index 70ed2306208..2fb080d07dc 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -1216,6 +1216,7 @@ class Manager implements IManager { foreach ($reshareRecords as $child) { try { + /* Check if the share is still valid (means the resharer still has access to the file through another mean) */ $this->generalCreateChecks($child); } catch (GenericShareException $e) { /* The check is invalid, promote it to a direct share from the sharer of parent share */ |