Skip to content

Commit

Permalink
fix: invalid teachers json
Browse files Browse the repository at this point in the history
  • Loading branch information
ketronix-dev committed Aug 6, 2024
1 parent aa66054 commit 3a0cea9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions Nure.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@
<PackageProjectUrl>https://api.mindenit.tech</PackageProjectUrl>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<RepositoryUrl>https://github.com/mindenit/Nure.NET</RepositoryUrl>
<ApplicationVersion>0.9.0</ApplicationVersion>
<Version>0.9.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ApplicationVersion>0.9.5</ApplicationVersion>
<Version>0.9.5</Version>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Parsers/Requests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3a0cea9

Please sign in to comment.