diff options
author | Louis Chemineau <louis@chmn.me> | 2023-04-17 11:16:20 +0200 |
---|---|---|
committer | Louis (Rebase PR Action) <artonge@users.noreply.github.com> | 2023-04-25 07:49:52 +0000 |
commit | ac6d24997318e4693ded67c283e4af26eb398df4 (patch) | |
tree | f8a7474b9e20da5231cc9803ba26146f5bf4d804 /apps | |
parent | c263b152013ba9ba4361e6d83dc7f5b0f66857b9 (diff) | |
download | nextcloud-server-ac6d24997318e4693ded67c283e4af26eb398df4.tar.gz nextcloud-server-ac6d24997318e4693ded67c283e4af26eb398df4.zip |
Really disable versions features when S3 versioning is enabled
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_versions/lib/Capabilities.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_versions/lib/Capabilities.php b/apps/files_versions/lib/Capabilities.php index 6524943690a..e97a5c4aaa4 100644 --- a/apps/files_versions/lib/Capabilities.php +++ b/apps/files_versions/lib/Capabilities.php @@ -46,7 +46,7 @@ class Capabilities implements ICapability { * @return array */ public function getCapabilities() { - $groupFolderOrS3VersioningInstalled = $this->appManager->isInstalled('groupfolders') || $this->appManager->isInstalled('groupfolders'); + $groupFolderOrS3VersioningInstalled = $this->appManager->isInstalled('groupfolders') || $this->appManager->isInstalled('files_versions_s3'); return [ 'files' => [ |