diff options
author | bobzel <zzzman@gmail.com> | 2025-06-13 09:00:49 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-13 09:00:49 -0400 |
commit | 2d6307f6eaa0803aefabae9e9232506611365b66 (patch) | |
tree | 7d77764b51a8dcfef4ed5554be6028fea815a4ae /src/client/util/PingManager.ts | |
parent | b91057d00512446339e48fb8488a97a1e5ef03d5 (diff) |
updated css and project to HTML5 standards. fixed border rounding for images.
Diffstat (limited to 'src/client/util/PingManager.ts')
-rw-r--r-- | src/client/util/PingManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/PingManager.ts b/src/client/util/PingManager.ts index 0e4f8cab0..593978b4a 100644 --- a/src/client/util/PingManager.ts +++ b/src/client/util/PingManager.ts @@ -27,7 +27,7 @@ export class PingManager { this.IsBeating = status; setTimeout(this.showAlert, 100); }); - Networking.PostToServer('/ping', { date: new Date() }) + Networking.PostToServer('/DashPing', { date: new Date() }) .then(res => { SnappingManager.SetServerVersion((res as { message: string }).message); !this.IsBeating && setIsBeating(true); |