fix: add default value for new flag $useDecryptAll on getFileKey

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2024-06-06 10:23:03 +02:00
parent 95cd524771
commit 885604ce2d
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A

View File

@ -345,7 +345,7 @@ class KeyManager {
/**
* @param ?bool $useLegacyFileKey null means try both
*/
public function getFileKey(string $path, ?string $uid, ?bool $useLegacyFileKey, bool $useDecryptAll): string {
public function getFileKey(string $path, ?string $uid, ?bool $useLegacyFileKey, bool $useDecryptAll = false): string {
if ($uid === '') {
$uid = null;
}