diff options
author | Chris Abrams <mail@chrisabrams.com> | 2020-04-28 20:17:03 -0500 |
---|---|---|
committer | Chris Abrams <mail@chrisabrams.com> | 2020-04-28 20:17:03 -0500 |
commit | ff6549c3c84ca7324032dbc37744645bf2fe1c3e (patch) | |
tree | ca6f0a4ad67007252bcf6cbb6f0f6826b6f20286 /src/rest.cpp | |
parent | ba348dbc518b8e082a5dc3a225432fdacf859a13 (diff) |
fix: update rest info on block size and json
Diffstat (limited to 'src/rest.cpp')
-rw-r--r-- | src/rest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rest.cpp b/src/rest.cpp index 0629557584..b389bf2028 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -206,7 +206,7 @@ static bool rest_headers(HTTPRequest* req, return true; } default: { - return RESTERR(req, HTTP_NOT_FOUND, "output format not found (available: .bin, .hex)"); + return RESTERR(req, HTTP_NOT_FOUND, "output format not found (available: .bin, .hex, .json)"); } } } |