From 1a698550906e09e7e15c5a6288042bae2b98bffa Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Thu, 2 Oct 2025 10:23:14 +0200 Subject: [PATCH] Fix `urls` parameter when sending many urls to be stored using the API --- src/Wallabag/ApiBundle/Controller/EntryRestController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Wallabag/ApiBundle/Controller/EntryRestController.php b/src/Wallabag/ApiBundle/Controller/EntryRestController.php index 4b318ff37..641aeac97 100644 --- a/src/Wallabag/ApiBundle/Controller/EntryRestController.php +++ b/src/Wallabag/ApiBundle/Controller/EntryRestController.php @@ -502,7 +502,7 @@ class EntryRestController extends WallabagRestController * @OA\Parameter( * name="urls", * in="query", - * description="Urls (as an array) to create. A JSON array of urls [{'url': 'http://...'}, {'url': 'http://...'}]", + * description="Urls (as an array) to create. A JSON array of urls ['http://...', 'http://...']", * required=true, * @OA\Schema(type="string") * ),