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