[server/list-reading-types] Don't return an error if a device hasn't submitted any data yet

This commit is contained in:
Starbeamrainbowlabs 2019-04-16 17:15:11 +01:00
parent 3b4f907164
commit 8ebb6539bc
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
2 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,8 @@
# Changelog
## v0.7.1 - 16th April 2019
- [API] `list-reading-types` no longer returns an error if a device hasn't submitted any readings yet
## v0.7 - 14th April 2019
- Added experimental heatmap time slider!

View File

@ -52,11 +52,7 @@ class ListReadingTypes implements IAction {
// 1.5: Validate data from database
if(empty($data)) {
http_response_code(404);
header("content-type: text/plain");
header("x-time-taken: " . PerfFormatter::format_perf_data($start_time, $start_handle, null));
echo("Error: No types are currently present in the system.");
return false;
header("x-notice: No reading types found for that request");
}
// 3: Serialise data