File tree 2 files changed +2
-2
lines changed
src/Hangfire.Core/Dashboard/Pages
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 110
110
<div class =" word-break" >
111
111
@Html.JobNameLink(job.Key , job .Value .Job )
112
112
</div >
113
- @if (! String .IsNullOrEmpty (job .Value .ExceptionMessage ))
113
+ @if (! String .IsNullOrEmpty (job .Value .ExceptionMessage ) || ! String . IsNullOrEmpty ( job . Value . ExceptionDetails ) )
114
114
{
115
115
<div class =" text-muted" >
116
116
@job.Value.Reason <a class =" expander" href =" #" >@( index == 0 ? Strings .Common_LessDetails : Strings .Common_MoreDetails ) </a >
Original file line number Diff line number Diff line change @@ -541,7 +541,7 @@ public override void Execute()
541
541
542
542
543
543
#line 113 "..\..\Dashboard\Pages\FailedJobsPage.cshtml"
544
- if ( ! String . IsNullOrEmpty ( job . Value . ExceptionMessage ) )
544
+ if ( ! String . IsNullOrEmpty ( job . Value . ExceptionMessage ) || ! String . IsNullOrEmpty ( job . Value . ExceptionDetails ) )
545
545
{
546
546
547
547
You can’t perform that action at this time.
0 commit comments