aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLouis <louis@chmn.me>2024-10-23 14:13:33 +0200
committerGitHub <noreply@github.com>2024-10-23 14:13:33 +0200
commitb0197c5dfcb0dac94de43bfbfa89a2889fc1e30b (patch)
tree1b2084c9cbf51f8d9ac2e0c8d242c84d7100d2a5 /lib
parent8f59997689e933ed1b302c9a1a36e9cc9d56eefc (diff)
parent5f69d8d8919ab09539e24b5ea92c81f3ccced4a9 (diff)
downloadnextcloud-server-b0197c5dfcb0dac94de43bfbfa89a2889fc1e30b.tar.gz
nextcloud-server-b0197c5dfcb0dac94de43bfbfa89a2889fc1e30b.zip
Merge pull request #48851 from nextcloud/artonge/fix/uid_type
Fix $uid type in Encryption stream
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/Stream/Encryption.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Stream/Encryption.php b/lib/private/Files/Stream/Encryption.php
index 10df9ae98e2..0d55385820c 100644
--- a/lib/private/Files/Stream/Encryption.php
+++ b/lib/private/Files/Stream/Encryption.php
@@ -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;