Skip to content

Commit

Permalink
Infra: Update Microsoft.IdentityModel.JsonWebTokens (#7070)
Browse files Browse the repository at this point in the history
* Update Microsoft.IdentityModel.JsonWebTokens

* Update
  • Loading branch information
IsaacMarovitz authored Aug 4, 2024
1 parent 263eb97 commit 42f22fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageVersion Include="LibHac" Version="0.19.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
<PackageVersion Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.6.2" />
<PackageVersion Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.0.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageVersion Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
<PackageVersion Include="MsgPack.Cli" Version="1.0.1" />
Expand Down
4 changes: 2 additions & 2 deletions src/Ryujinx/UI/ViewModels/UserProfileViewModel.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.IdentityModel.Tokens;
using Ryujinx.Ava.UI.Models;
using System;
using System.Collections.ObjectModel;
using System.Linq;

namespace Ryujinx.Ava.UI.ViewModels
{
Expand All @@ -11,7 +11,7 @@ public UserProfileViewModel()
{
Profiles = new ObservableCollection<BaseModel>();
LostProfiles = new ObservableCollection<UserProfile>();
IsEmpty = LostProfiles.IsNullOrEmpty();
IsEmpty = !LostProfiles.Any();
}

public ObservableCollection<BaseModel> Profiles { get; set; }
Expand Down

0 comments on commit 42f22fe

Please sign in to comment.