From 240b6e74639364c81b6217b3112548bb482065bc Mon Sep 17 00:00:00 2001 From: Justin Baur Date: Thu, 3 Feb 2022 13:23:43 -0500 Subject: [PATCH] Update File Size to allow null (#1839) * Update File Size to allow null * Remove unneeded nullable number --- src/Api/Models/SendFileModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Models/SendFileModel.cs b/src/Api/Models/SendFileModel.cs index b39aa33eae..653510c896 100644 --- a/src/Api/Models/SendFileModel.cs +++ b/src/Api/Models/SendFileModel.cs @@ -21,7 +21,7 @@ namespace Bit.Api.Models [EncryptedStringLength(1000)] public string FileName { get; set; } [JsonNumberHandling(JsonNumberHandling.AllowReadingFromString | JsonNumberHandling.WriteAsString)] - public long Size { get; set; } + public long? Size { get; set; } public string SizeName { get; set; } } }