diff options
author | Louis <louis@chmn.me> | 2024-10-23 13:19:05 +0200 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2024-10-23 13:20:40 +0200 |
commit | 5f69d8d8919ab09539e24b5ea92c81f3ccced4a9 (patch) | |
tree | 7b025826b21ddc706fce16dbf4169147527a8092 /lib/private/Files | |
parent | 74cd6e295a8e2e7c64e4fe38ba775986c57509a4 (diff) | |
download | nextcloud-server-5f69d8d8919ab09539e24b5ea92c81f3ccced4a9.tar.gz nextcloud-server-5f69d8d8919ab09539e24b5ea92c81f3ccced4a9.zip |
fix: $uid type in Encryption streamartonge/fix/uid_type
As explained by the comment.
Signed-off-by: Louis <louis@chmn.me>
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'lib/private/Files')
-rw-r--r-- | lib/private/Files/Stream/Encryption.php | 2 |
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; |