aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/Storage/MinioClientManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'back-end/src/Storage/MinioClientManager.cs')
-rw-r--r--back-end/src/Storage/MinioClientManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/back-end/src/Storage/MinioClientManager.cs b/back-end/src/Storage/MinioClientManager.cs
index a817ba6..c7867b2 100644
--- a/back-end/src/Storage/MinioClientManager.cs
+++ b/back-end/src/Storage/MinioClientManager.cs
@@ -123,13 +123,13 @@ namespace Content.Publishing.Blog.Admin.Storage
{
//Get the post content file
ObjectStat stat = await Client.GetObjectAsync(args, cancellation);
+ return stat.Size;
}
catch (Minio.Exceptions.ObjectNotFoundException)
{
//File not found
- return -1;
+ return -1L;
}
- return output.Position;
}
}
}