Skip to content

Commit 9ddd9f5

Browse files
committed
avoid deserializing an empty date string
1 parent f2bfc90 commit 9ddd9f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rubberduckvba.Server/Model/HangfireJobState.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public record class HangfireJobState
55
public string JobName { get; set; } = default!;
66
public DateTime CreatedAt { get; set; }
77
public int? LastJobId { get; set; }
8-
public DateTime? NextExecution { get; set; }
8+
public string? NextExecution { get; set; }
99
public string? StateName { get; set; }
10-
public DateTime? StateTimestamp { get; set; }
10+
public string? StateTimestamp { get; set; }
1111
}

0 commit comments

Comments
 (0)