Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ff9e033

Browse files
authoredFeb 4, 2025··
Merge pull request #30 from rubberduck-vba/p0
avoid deserializing an empty date string
2 parents 0f3e7cd + 9ddd9f5 commit ff9e033

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)
Please sign in to comment.