Skip to content

Commit 3a6c8ed

Browse files
Output analysis values even when no blob
1 parent b0287a0 commit 3a6c8ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/Controllers/Models/AnalysisDto.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public AnalysisDto(Analysis analysis, IBlobStorageService blobService)
3131
.Where(w => !w.WorkflowType.Equals("anonymizer", StringComparison.OrdinalIgnoreCase))
3232
.OrderByDescending(w => w.CompletedAt ?? w.StartedAt ?? DateTime.MinValue)
3333
.FirstOrDefault();
34-
if (visualizedWorkflow != null && visualizedWorkflow.OutputBlobStorageLocation != null)
34+
if (visualizedWorkflow != null)
3535
{
3636
var workflowDto = new WorkflowDto(visualizedWorkflow, blobService);
3737
this.VisualizedSAS = workflowDto.OutputBlobSAS;

0 commit comments

Comments
 (0)