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:
parent
88bccf0d04
commit
edf7b1a7ef
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user