Skip to content

Commit

Permalink
Merge pull request #95 from SSchulze1989/develop
Browse files Browse the repository at this point in the history
v 0.7.7
  • Loading branch information
SSchulze1989 authored Aug 14, 2023
2 parents d6774c5 + 0bcdfad commit 4296fd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
FileLoading = true;
ParsedResult = null;
var browserFile = e.File;
using var stream = browserFile.OpenReadStream();
using var stream = browserFile.OpenReadStream(maxAllowedSize: 10240000);
ParsedResult = await JsonSerializer.DeserializeAsync<ParseSimSessionResult>(stream);
ParsingFailed = false;
}
Expand Down
2 changes: 1 addition & 1 deletion src/iRLeagueManager.Web/iRLeagueManager.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Version>0.7.6</Version>
<Version>0.7.7</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-iRLeagueManager.Web-2B05F9DC-55A3-49D1-BD64-31507000EDF3</UserSecretsId>
Expand Down

0 comments on commit 4296fd9

Please sign in to comment.