diff --git a/src/parser/browser/history/Chromium.ts b/src/parser/browser/history/Chromium.ts index cbaf7c8..30bb41e 100644 --- a/src/parser/browser/history/Chromium.ts +++ b/src/parser/browser/history/Chromium.ts @@ -44,6 +44,7 @@ export class ChromiumHistoryApplicationImpl extends BrowserApplicationImpl { let title: string = i['title'] ?? '' let url: string = i['url'] ?? '' + let time: number = (i['timestamp'] ?? 0) * 1000 items.push({ id: '', title: title, @@ -58,7 +59,7 @@ export class ChromiumHistoryApplicationImpl extends BrowserApplicationImpl { let title: string = i['title'] ?? '' let url: string = i['url'] ?? '' + let time: number = (i['timestamp'] ?? 0) * 1000 items.push({ id: '', title: title, @@ -66,7 +67,7 @@ export class SafariHistoryApplicationImpl extends BrowserApplicationImpl