From 82e614ec50017d9c45c9b67bf1642311ac6df375 Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 3 Jun 2024 09:25:42 +0200 Subject: [PATCH] Update thumbnails README.md References: #9199 (feat: limit concurrent processing of thumbnail requests) Content fix: - If NO thumbnail is available, we return 404 (and not if it is avaialble) - Make the resolution list multi-lined again for improved readbility --- services/thumbnails/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/services/thumbnails/README.md b/services/thumbnails/README.md index 813b5cc16d0..efac3abaee4 100644 --- a/services/thumbnails/README.md +++ b/services/thumbnails/README.md @@ -41,7 +41,7 @@ Thumbnails can either be generated as `png`, `jpg` or `gif` files. These types a ## Thumbnail Query String Parameters -Clients can request thumbnail previews for files by adding `?preview=1` to the file URL. Requests for files with thumbnail available respond with HTTP status `404`. +Clients can request thumbnail previews for files by adding `?preview=1` to the file URL. Requests for files with no thumbnail available respond with HTTP status `404`. The following query parameters are supported: @@ -61,9 +61,9 @@ Various resolutions can be defined via `THUMBNAILS_RESOLUTIONS`. A requestor can Example: -Requested: 18x12 -Available: 30x20, 15x10, 9x6 -Returned: 15x10 +Requested: 18x12\ +Available: 30x20, 15x10, 9x6\ +Returned: 15x10\ ## Thumbnail Processors