Update IFingerprintManager

This commit is contained in:
2021-06-05 10:47:11 +02:00
parent 5e303c39f2
commit 187c320704
3 changed files with 45 additions and 6 deletions

View File

@@ -75,7 +75,7 @@ namespace Akari.Prototype.Server.Cli.Commands
table.AddColumn(new TableColumn("[bold yellow]Name[/]").LeftAligned());
table.AddColumn(new TableColumn("[bold blue]Token[/]").LeftAligned());
foreach (var (name, hash) in _fingerprintManager.FingerprintsHash)
foreach (var (name, hash) in _fingerprintManager)
{
table.AddRow($"[silver]{name}[/]", $"[grey]{hash}[/]");
}