From bcb2aaa26d55a2755ad00de1a92e766e80743a1e Mon Sep 17 00:00:00 2001 From: Arzumify Date: Thu, 17 Oct 2024 17:34:44 +0100 Subject: [PATCH] Fixed removing RFCs --- resources/templates/admin.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/templates/admin.html b/resources/templates/admin.html index 72e258d..51c9d6b 100644 --- a/resources/templates/admin.html +++ b/resources/templates/admin.html @@ -59,8 +59,8 @@ "Content-Type": "application/json" }, body: JSON.stringify({ - year: year, - id: id, + year: parseInt(year), + id: parseInt(id), token: localStorage.getItem("SECRET-token") }) }).then(function(response) {