Fix null error in lightbeam.getDataGatheredSince (#182)

This commit is contained in:
Bianca Danforth 2017-08-29 14:35:58 -07:00 коммит произвёл Jonathan Kingston
Родитель 6deb4305af
Коммит e0728d9fb9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);