Skip to content

Commit

Permalink
fix: increase timestamp diff limit
Browse files Browse the repository at this point in the history
  • Loading branch information
JuroUhlar committed Oct 22, 2024
1 parent d035802 commit c8480d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/checks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { getServerRegion } from './fingerprint-server-api';
import { IS_DEVELOPMENT } from '../envShared';

export const IPv4_REGEX = /^((25[0-5]|(2[0-4]|1\d|[1-9]|)\d)\.){3}(25[0-5]|(2[0-4]|1\d|[1-9]|)\d)$/;
export const ALLOWED_REQUEST_TIMESTAMP_DIFF_MS = 4000;
export const ALLOWED_REQUEST_TIMESTAMP_DIFF_MS = 7000;

// Demo origins.
// It is recommended to use production origins instead.
Expand Down

0 comments on commit c8480d4

Please sign in to comment.