fix: remove check that method is correct

This commit is contained in:
Stefan Ottosson 2024-05-24 08:29:09 +02:00
parent 823aeda9fe
commit 9c7aa13190
No known key found for this signature in database
GPG key ID: 254BFA8856A90692

View file

@ -60,10 +60,6 @@ router.all("/api/push/:pushToken", async (request, response) => {
throw new Error("Monitor not found or not active.");
}
if (monitor.method !== request.method) {
throw new Error("Monitor HTTP method (" + monitor.method + ") does not match request (" + request.method + ").");
}
const previousHeartbeat = await Monitor.getPreviousHeartbeat(monitor.id);
let isFirstBeat = true;