Update changelog

This commit is contained in:
Starbeamrainbowlabs 2019-02-20 17:35:54 +00:00
parent b417cce31d
commit 69a581094a
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
## v0.3.3 - 20th February 2019
- Updated to use new database structure
## v0.3.2 - 10th February 2019 ## v0.3.2 - 10th February 2019
- Bugfix: Default to something sensible when opening the device graph in certain cases - Bugfix: Default to something sensible when opening the device graph in certain cases
- Add new quick time buttons below device graph to change displayed time window - Add new quick time buttons below device graph to change displayed time window

View File

@ -196,6 +196,7 @@ class DeviceReadingDisplay {
// Wrap it in an Error instance if needed // Wrap it in an Error instance if needed
if(typeof error == "string") if(typeof error == "string")
error = new Error(error.length == 0 ? "An unknown error has ocurred. It's probably on the server." : error); error = new Error(error.length == 0 ? "An unknown error has ocurred. It's probably on the server." : error);
alert(error.message); alert(error.message);
console.error(error); console.error(error);
return null; return null;