1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

try parse Size as a long (#2383)

This commit is contained in:
Kyle Spearrin 2022-11-04 15:00:03 -04:00 committed by GitHub
parent 88bccf0d04
commit edf7b1a7ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,8 +124,14 @@ public abstract class BaseEntityFrameworkRepository
!string.IsNullOrWhiteSpace(e.Attachments)) !string.IsNullOrWhiteSpace(e.Attachments))
.Select(e => e.Attachments) .Select(e => e.Attachments)
.ToListAsync(); .ToListAsync();
var storage = attachments.Sum(e => JsonDocument.Parse(e)?.RootElement.EnumerateObject() var storage = attachments.Sum(e => JsonDocument.Parse(e)?.RootElement.EnumerateObject().Sum(p =>
.Sum(p => p.Value.GetProperty("Size").GetInt64()) ?? 0); {
if (long.TryParse(p.Value.GetProperty("Size").ToString(), out var s))
{
return s;
}
return 0;
}) ?? 0);
var organization = new Organization var organization = new Organization
{ {
Id = organizationId, Id = organizationId,
@ -152,8 +158,14 @@ public abstract class BaseEntityFrameworkRepository
!string.IsNullOrWhiteSpace(e.Attachments)) !string.IsNullOrWhiteSpace(e.Attachments))
.Select(e => e.Attachments) .Select(e => e.Attachments)
.ToListAsync(); .ToListAsync();
var storage = attachments.Sum(e => JsonDocument.Parse(e)?.RootElement.EnumerateObject() var storage = attachments.Sum(e => JsonDocument.Parse(e)?.RootElement.EnumerateObject().Sum(p =>
.Sum(p => p.Value.GetProperty("Size").GetInt64()) ?? 0); {
if (long.TryParse(p.Value.GetProperty("Size").ToString(), out var s))
{
return s;
}
return 0;
}) ?? 0);
var user = new Models.User var user = new Models.User
{ {
Id = userId, Id = userId,