From 7705776d6a63e8ac4f8851d6337b2e033b4ac58c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 11 Oct 2018 14:50:59 -0400 Subject: [PATCH] self hosted storage is 10tb --- src/Core/Services/Implementations/CipherService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/CipherService.cs b/src/Core/Services/Implementations/CipherService.cs index 7abbdde223..3c4a5a0aa1 100644 --- a/src/Core/Services/Implementations/CipherService.cs +++ b/src/Core/Services/Implementations/CipherService.cs @@ -145,7 +145,7 @@ namespace Bit.Core.Services // Users that get access to file storage/premium from their organization get the default // 1 GB max storage. storageBytesRemaining = user.StorageBytesRemaining( - _globalSettings.SelfHosted ? (short)1024 : (short)1); + _globalSettings.SelfHosted ? (short)10240 : (short)1); } } else if(cipher.OrganizationId.HasValue)