1
0
Fork 0
mirror of synced 2024-10-03 19:53:33 +13:00

Fix another null warning

This commit is contained in:
Bradley Schofield 2022-11-09 13:23:14 +00:00
parent 29c30a361b
commit a0ab934328

View file

@ -584,7 +584,7 @@ App::post('/v1/storage/buckets/:bucketId/files')
->setAttribute('openSSLVersion', $openSSLVersion ?? null)
->setAttribute('openSSLCipher', $openSSLCipher ?? null)
->setAttribute('openSSLTag', $openSSLTag ?? null)
->setAttribute('openSSLIV', $openSSLIV)
->setAttribute('openSSLIV', $openSSLIV ?? null)
->setAttribute('metadata', $metadata)
->setAttribute('chunksUploaded', $chunksUploaded);