Skip to content

Commit

Permalink
Fixed: Allow restore to process backups up to ~1000MB
Browse files Browse the repository at this point in the history
Fixes #4513
  • Loading branch information
Qstick authored and mynameisbogdan committed Jan 25, 2024
1 parent a3504b5 commit c9faf83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lidarr.Api.V1/System/Backup/BackupController.cs
Expand Up @@ -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;
Expand Down

0 comments on commit c9faf83

Please sign in to comment.