From e8558a06caee6656e27a9ca56b8948a7745af08b Mon Sep 17 00:00:00 2001 From: Stefan Lingler Date: Mon, 11 Jun 2018 18:57:08 +0200 Subject: [PATCH] Wrong array key name in file list result While working with the API I noticed that the file name is delivered in the array key "file_name" instead of the field "name" that is mentioned in the documentation. --- resources/file.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/file.md b/resources/file.md index c056d69..fab044e 100644 --- a/resources/file.md +++ b/resources/file.md @@ -51,7 +51,7 @@ status 200 OK }, "data": [ { - "name": "strings.po", + "file_name": "strings.po", "string_count": 236, "last_import": { "id": 123, @@ -61,7 +61,7 @@ status 200 OK "uploaded_at_timestamp": 1381159630 }, { - "name": "en.yml", + "file_name": "en.yml", "string_count": 335, "last_import": { "id": 109, @@ -71,7 +71,7 @@ status 200 OK "uploaded_at_timestamp": 1380976612 }, { - "name": "Manually input", + "file_name": "Manually input", "string_count": 285, }, ...