Skip to content

Commit

Permalink
Fix formatting output formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Mar 10, 2024
1 parent e9dba07 commit 0737ba7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- Try updating PR check action
- Fix config access persmission (Deterous)
- Fix Check UI deadlock (Deterous)
- Fix formatting output formatting

### 3.1.2 (2024-02-27)

Expand Down
4 changes: 2 additions & 2 deletions MPF.Core/DumpEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,9 @@ public async Task<Result> VerifyAndSaveDumpOutput(
resultProgress?.Report(Result.Success("Formatting information..."));
(var formattedValues, var formatResult) = Formatter.FormatOutputData(submissionInfo, Options.EnableRedumpCompatibility);
if (formattedValues == null)
resultProgress?.Report(Result.Success(formatResult));
else
resultProgress?.Report(Result.Failure(formatResult));
else
resultProgress?.Report(Result.Success(formatResult));

// Get the filename suffix for auto-generated files
var filenameSuffix = Options.AddFilenameSuffix ? Path.GetFileNameWithoutExtension(outputFilename) : null;
Expand Down

0 comments on commit 0737ba7

Please sign in to comment.