mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-22 06:05:38 +01:00
Increase size limit
This commit is contained in:
parent
9a751ddc64
commit
6dbcc6452e
@ -19,7 +19,7 @@
|
|||||||
private readonly IHttpContextAccessor httpContextAccessor;
|
private readonly IHttpContextAccessor httpContextAccessor;
|
||||||
private readonly ILogger<CrashReportsController> logger;
|
private readonly ILogger<CrashReportsController> logger;
|
||||||
private readonly IConfiguration configuration;
|
private readonly IConfiguration configuration;
|
||||||
private const long MaximumSizeInBytes = 5242880; // 5MB
|
private const long MaximumSizeInBytes = 10485760; // 10MB
|
||||||
|
|
||||||
public CrashReportsController(
|
public CrashReportsController(
|
||||||
ICrashReportService crashReportService,
|
ICrashReportService crashReportService,
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
|
<UserSecretsId>155c5645-8bf7-4515-88d4-9ef801fdc47e</UserSecretsId>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user