From adef21275c067ff95867284dff02bbc0e2add155 Mon Sep 17 00:00:00 2001 From: Aquilao Date: Thu, 11 Feb 2021 16:54:28 +0800 Subject: [PATCH] fix bug about firefox download endtime --- core/data/parse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/data/parse.go b/core/data/parse.go index 97d098e..50caae4 100644 --- a/core/data/parse.go +++ b/core/data/parse.go @@ -552,7 +552,7 @@ func (d *downloads) FirefoxParse() error { Url: url, TotalBytes: fileSize.Int(), StartTime: utils.TimeStampFormat(dateAdded / 1000000), - EndTime: utils.TimeStampFormat(endTime.Int() / 1000000), + EndTime: utils.TimeStampFormat(endTime.Int() / 1000), }) } tempMap[place_id] = url