diff options
author | Louis <louis@chmn.me> | 2024-08-28 10:35:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 10:35:09 +0200 |
commit | c30c9d41580e8129e1ec6e53bfe2bf445db1f304 (patch) | |
tree | ab81dfd7f13b4d8b5ec3437082c3c35917241fe1 | |
parent | 6fe25228080d33889183759fc3701e1423961ee4 (diff) | |
parent | 675c7fab788b15d7a9ad65810c182f05f209a448 (diff) | |
download | nextcloud-server-c30c9d41580e8129e1ec6e53bfe2bf445db1f304.tar.gz nextcloud-server-c30c9d41580e8129e1ec6e53bfe2bf445db1f304.zip |
Merge pull request #47511 from nextcloud/artonge/chore/is_encrypted_description
chore: Improve `FileInfo::isEncrypted` description
-rw-r--r-- | lib/public/Files/FileInfo.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/public/Files/FileInfo.php b/lib/public/Files/FileInfo.php index 468013ac271..f9957f580e8 100644 --- a/lib/public/Files/FileInfo.php +++ b/lib/public/Files/FileInfo.php @@ -133,7 +133,9 @@ interface FileInfo { public function getId(); /** - * Check whether the file is encrypted + * Check whether the node is encrypted. + * If it is a file, then it is server side encrypted. + * If it is a folder, then it is end-to-end encrypted. * * @return bool * @since 7.0.0 |