diff --git a/client/chrome/content/ssl/NativeCertificateCache.js b/client/chrome/content/ssl/NativeCertificateCache.js index 5d420b3..54adee4 100644 --- a/client/chrome/content/ssl/NativeCertificateCache.js +++ b/client/chrome/content/ssl/NativeCertificateCache.js @@ -171,7 +171,7 @@ NativeCertificateCache.prototype.fetchAll = function(sortColumn, sortDirection) id: SQLITE.lib.sqlite3_column_int64(preparedStatement, 0), location: SQLITE.lib.sqlite3_column_text(preparedStatement, 1).readString(), fingerprint: SQLITE.lib.sqlite3_column_text(preparedStatement, 2).readString(), - timestamp: new Date(SQLITE.lib.sqlite3_column_int64(preparedStatement, 3)), + timestamp: new Date(parseInt(SQLITE.lib.sqlite3_column_int64(preparedStatement, 3))), }); }