From 3a0cea9ed0a6d537dfa4057a615f13574cdf7cad Mon Sep 17 00:00:00 2001 From: Artem Dadashjants <111521698+ketronix-dev@users.noreply.github.com> Date: Tue, 6 Aug 2024 10:08:15 +0000 Subject: [PATCH] fix: invalid teachers json --- Nure.NET.csproj | 9 +++++++-- Parsers/Requests.cs | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Nure.NET.csproj b/Nure.NET.csproj index 459f9f6..b9a7620 100644 --- a/Nure.NET.csproj +++ b/Nure.NET.csproj @@ -7,8 +7,13 @@ https://api.mindenit.tech GPL-3.0-or-later https://github.com/mindenit/Nure.NET - 0.9.0 - 0.9.0 + README.md + 0.9.5 + 0.9.5 + + + + diff --git a/Parsers/Requests.cs b/Parsers/Requests.cs index afd3d44..5d31f84 100644 --- a/Parsers/Requests.cs +++ b/Parsers/Requests.cs @@ -123,7 +123,7 @@ public static string GetTeachersJson() // Remove BOM json = json.TrimStart('\uFEFF'); - json = json.Remove(json.Length - 2); + //json = json.Remove(json.Length - 2); json += "]}}"; return json;