Convert triple space to tab

This commit is contained in:
Matt Nadareski
2022-04-12 17:03:32 -07:00
parent b5504902c4
commit 9d70b7469a
2 changed files with 2 additions and 0 deletions

View File

@@ -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

View File

@@ -1062,6 +1062,7 @@ namespace MPF.Library
// Convert to tabs
value = value.Replace("<tab>", "\t");
value = value.Replace("<TAB>", "\t");
value = value.Replace(" ", "\t");
// If the value contains a newline
value = value.Replace("\r\n", "\n");