diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2024-09-04 10:54:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 10:54:32 +0200 |
commit | 891466842739d02a93cd2cf9869b19274b5490d8 (patch) | |
tree | 60257ce64ecc68b70ee48aaa2eec0108358d7aed | |
parent | 1a9ded4b429fd20df15449fc877bb81c0a89d9a2 (diff) | |
parent | e3924d317313d403d639a7c24062acc4d6c3dbe2 (diff) | |
download | nextcloud-server-891466842739d02a93cd2cf9869b19274b5490d8.tar.gz nextcloud-server-891466842739d02a93cd2cf9869b19274b5490d8.zip |
Merge pull request #47729 from nextcloud/artonge/backport/stable30/47511
[stable30] chore: Improve 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 |