Fix null error in lightbeam.getDataGatheredSince (#182)
This commit is contained in:
Родитель
6deb4305af
Коммит
e0728d9fb9
|
@ -79,7 +79,7 @@ const lightbeam = {
|
||||||
async getDataGatheredSince() {
|
async getDataGatheredSince() {
|
||||||
const firstRequestUnixTime = await storeChild.getFirstRequestTime();
|
const firstRequestUnixTime = await storeChild.getFirstRequestTime();
|
||||||
if (!firstRequestUnixTime) {
|
if (!firstRequestUnixTime) {
|
||||||
return null;
|
return {};
|
||||||
}
|
}
|
||||||
// reformat unix time
|
// reformat unix time
|
||||||
let fullDateTime = new Date(firstRequestUnixTime);
|
let fullDateTime = new Date(firstRequestUnixTime);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче