From d1b05814ea2112114aa99ac9b61ce60a528f8b7e Mon Sep 17 00:00:00 2001 From: Aquilao Date: Thu, 11 Feb 2021 16:54:28 +0800 Subject: [PATCH] fix: firefox download endtime bug --- 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