mirror of
https://github.com/Readarr/Readarr
synced 2026-01-04 22:54:24 +01:00
Fixed: Allow restore to process backups up to ~1000MB
This commit is contained in:
parent
5a6486be21
commit
f260078ac8
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ public object Restore(int id)
|
|||
}
|
||||
|
||||
[HttpPost("restore/upload")]
|
||||
[RequestFormLimits(MultipartBodyLengthLimit = 500000000)]
|
||||
[RequestFormLimits(MultipartBodyLengthLimit = 1000000000)]
|
||||
public object UploadAndRestore()
|
||||
{
|
||||
var files = Request.Form.Files;
|
||||
|
|
|
|||
Loading…
Reference in a new issue