diff options
author | Louis <6653109+artonge@users.noreply.github.com> | 2023-04-17 15:32:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 15:32:47 +0200 |
commit | ed2b28b60d9cc5d50f9567789c4984799a43a4da (patch) | |
tree | 0db38e2545fbbf6112d709bab1dfdc77721aebdb /apps | |
parent | bdb09abd1a363ae89c730ebb4837e4294aeb8dc5 (diff) | |
parent | cca46f18eb8ac710c5535f818ea26756b1b92812 (diff) | |
download | nextcloud-server-ed2b28b60d9cc5d50f9567789c4984799a43a4da.tar.gz nextcloud-server-ed2b28b60d9cc5d50f9567789c4984799a43a4da.zip |
Merge pull request #37764 from nextcloud/artonge/fix/disable_versions_feature_s3_versioning
Really disable versions features when S3 versioning is enabled
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' => [ |