Skip to content

Commit

Permalink
Merge pull request #1429 from andy840119/update-nuget-package
Browse files Browse the repository at this point in the history
Update nuget package to the latest.
  • Loading branch information
andy840119 authored Jul 9, 2022
2 parents 6a87ad4 + fd13168 commit d993c75
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 @@ -42,7 +42,7 @@ protected override void ParseStreamInto(LineBufferedReader stream, Beatmap outpu
globalSetting.PreserveReferencesHandling = PreserveReferencesHandling.Objects;

// should not let json decoder to read this line.
if (stream.PeekLine().Contains("// karaoke json file format v"))
if (stream.PeekLine()?.Contains("// karaoke json file format v") ?? false)
{
stream.ReadLine();
}
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Karaoke/osu.Game.Rulesets.Karaoke.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ppy.osu.Game" Version="2022.704.0" />
<PackageReference Include="ppy.osu.Game" Version="2022.709.1" />
<PackageReference Include="Lucene.Net" Version="4.8.0-beta00016" />
<PackageReference Include="Lucene.Net.Analysis.Kuromoji" Version="4.8.0-beta00016" />
<PackageReference Include="NicoKaraParser" Version="1.1.0" />
Expand Down

0 comments on commit d993c75

Please sign in to comment.