From 10194a72eb68824c7dd5f9cd9067db80349ede12 Mon Sep 17 00:00:00 2001 From: Tilen Komel Date: Tue, 27 Aug 2024 22:29:39 +0200 Subject: [PATCH] Include position history --- api/src/index.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/api/src/index.ts b/api/src/index.ts index 54ecc98..7e75ae9 100644 --- a/api/src/index.ts +++ b/api/src/index.ts @@ -12,9 +12,10 @@ import "./routes/neighbours.js"; import "./routes/text-messages.js"; import "./routes/traceroutes.js"; import "./routes/waypoints.js"; +import "./routes/position-history.js"; Object.assign(BigInt.prototype, { - toJSON: function () { - return this.toString(); - }, + toJSON: function () { + return this.toString(); + }, });