[frontend] FIXME temporarily raise file upload max size

This commit is contained in:
Lilian 2024-04-23 04:37:22 +02:00
parent 5cf25f89d3
commit 92d5c4e611
No known key found for this signature in database
GPG key ID: 007CA12D692829E1

View file

@ -86,7 +86,7 @@ internal class ApiClient(HttpClient client)
{
request.Content = new MultipartFormDataContent
{
new StreamContent(file.OpenReadStream())
new StreamContent(file.OpenReadStream(maxAllowedSize: 1024 * 1024 * 50))
{
Headers =
{