From ab3cff96be43bcb9dd374e371e7d825f3329ffdf Mon Sep 17 00:00:00 2001
From: Artem Dadashjants <111521698+ketronix-dev@users.noreply.github.com>
Date: Tue, 20 Aug 2024 19:01:49 +0000
Subject: [PATCH] fix: teachers list
---
Nure.NET.csproj | 4 ++--
Parsers/Requests.cs | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Nure.NET.csproj b/Nure.NET.csproj
index 0c7fedd..61b6f4b 100644
--- a/Nure.NET.csproj
+++ b/Nure.NET.csproj
@@ -8,8 +8,8 @@
GPL-3.0-or-later
https://github.com/mindenit/Nure.NET
README.md
- 0.9.6
- 0.9.6
+ 0.9.7
+ 0.9.7
diff --git a/Parsers/Requests.cs b/Parsers/Requests.cs
index 2cfe230..afd3d44 100644
--- a/Parsers/Requests.cs
+++ b/Parsers/Requests.cs
@@ -124,7 +124,7 @@ public static string GetTeachersJson()
// Remove BOM
json = json.TrimStart('\uFEFF');
json = json.Remove(json.Length - 2);
- json += "]}]}}";
+ json += "]}}";
return json;
}