Merge pull request #48851 from nextcloud/artonge/fix/uid_type

Fix $uid type in Encryption stream
This commit is contained in:
Louis
2024-10-23 14:13:33 +02:00
committed by GitHub

View File

@@ -42,7 +42,7 @@ class Encryption extends Wrapper {
/**
* user who perform the read/write operation null for public access
*/
protected string $uid;
protected ?string $uid;
protected bool $readOnly;
protected bool $writeFlag;
protected array $expectedContextProperties;