From 9d70b7469a434a02f6e0eb7a7d7b4c347aab9c8e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 12 Apr 2022 17:03:32 -0700 Subject: [PATCH] Convert triple space to tab --- CHANGELIST.md | 1 + MPF.Library/InfoTool.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELIST.md b/CHANGELIST.md index d3e393e9..55d82da3 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -57,6 +57,7 @@ - Consolidate Redump login testing - Separate common arguments to new helper - Parse and format CD multisession data +- Convert triple space to tab ### 2.3 (2022-02-05) - Start overhauling Redump information pulling, again diff --git a/MPF.Library/InfoTool.cs b/MPF.Library/InfoTool.cs index 6a675ec4..bd5c6ae8 100644 --- a/MPF.Library/InfoTool.cs +++ b/MPF.Library/InfoTool.cs @@ -1062,6 +1062,7 @@ namespace MPF.Library // Convert to tabs value = value.Replace("", "\t"); value = value.Replace("", "\t"); + value = value.Replace(" ", "\t"); // If the value contains a newline value = value.Replace("\r\n", "\n");