forked from kolide/launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[KATC] Support fields with JS Date type for Chrome/Firefox extension …
…databases (kolide#2054)
- Loading branch information
1 parent
cdb1b5a
commit 16d2d79
Showing
5 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+77 Bytes
(100%)
ee/katc/test_data/indexeddbs/1985929987lbadutnscehter.sqlite.zip
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,8 @@ | |
], | ||
noDetails: [], // Empty array | ||
email: "[email protected]", | ||
someTimestamp: 1720034607 // *unint32 | ||
someTimestamp: 1720034607, // *unint32 | ||
someDate: new Date() // Date object, empty | ||
}, | ||
{ | ||
uuid: "03b3e669-3e7a-482c-83b2-8a800b9f804f", | ||
|
@@ -88,7 +89,8 @@ | |
], | ||
noDetails: [], // Empty array | ||
email: "[email protected]", | ||
someTimestamp: 1726096312 // *unint32 | ||
someTimestamp: 1726096312, // *unint32 | ||
someDate: new Date("December 17, 1995 03:24:00") // Date object, not empty | ||
}, | ||
]; | ||
objectStore.transaction.oncomplete = (event) => { | ||
|