mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 07:04:24 +00:00
0️⃣ Media API: Fix maxFileSizeBytes=0 handling (#1993)
This commit is contained in:
parent
1ec5b0709b
commit
5b969d172b
1 changed files with 1 additions and 1 deletions
|
@ -737,7 +737,7 @@ func (r *downloadRequest) fetchRemoteFile(
|
|||
return "", false, parseErr
|
||||
}
|
||||
|
||||
if contentLength > int64(maxFileSizeBytes) {
|
||||
if maxFileSizeBytes > 0 && contentLength > int64(maxFileSizeBytes) {
|
||||
// TODO: Bubble up this as a 413
|
||||
return "", false, fmt.Errorf("remote file is too large (%v > %v bytes)", contentLength, maxFileSizeBytes)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue