From b059ff8f98a28d95970018209b7a6c274b6e8f8e Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sat, 17 Dec 2022 19:26:51 +0000 Subject: [PATCH] Fix showing instanced name for filesystems in formats command. --- Aaru/Commands/Formats.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Aaru/Commands/Formats.cs b/Aaru/Commands/Formats.cs index 382d15142..0a67bedda 100644 --- a/Aaru/Commands/Formats.cs +++ b/Aaru/Commands/Formats.cs @@ -174,7 +174,7 @@ sealed class FormatsCommand : Command if(verbose) table.AddRow(fs.Id.ToString(), Markup.Escape(fs.Name)); else - table.AddRow(Markup.Escape(kvp.Value.Name)); + table.AddRow(Markup.Escape(fs.Name)); } AnsiConsole.Write(table);