We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916657b commit 3c21680Copy full SHA for 3c21680
Services/UI/OJS.Services.Ui.Business/Implementations/SubmissionsBusinessService.cs
@@ -505,7 +505,7 @@ await this.transactionsProvider.ExecuteInTransaction(async () =>
505
await this.submissionsForProcessingData.SetProcessingState(submissionForProcessing, SubmissionProcessingState.Processed);
506
});
507
508
- if (submissionExecutionResult.VerboseLogFile != null)
+ if (submissionExecutionResult.VerboseLogFile is { Length: > 0 })
509
{
510
await this.fileIo.SaveFile(this.GetLogFilePath(submission.Id), submissionExecutionResult.VerboseLogFile);
511
}
0 commit comments