fix: various fixes to things + simply app proxy sentry setup
This commit is contained in:
@@ -58,6 +58,15 @@ export function parseTimestamp(text: string): ParserResult | null {
|
||||
return null;
|
||||
}
|
||||
|
||||
const timestampMillis = timestamp * 1000;
|
||||
if (!Number.isFinite(timestampMillis)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (Number.isNaN(new Date(timestampMillis).getTime())) {
|
||||
return null;
|
||||
}
|
||||
|
||||
let style: TimestampStyle;
|
||||
if (stylePart !== undefined) {
|
||||
if (stylePart === '') {
|
||||
|
||||
Reference in New Issue
Block a user