Skip to content

Commit a8f6de9

Browse files
committed
fix hash update time not being read/saved in settings json
1 parent 9760d7f commit a8f6de9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ArcExplorer/Models/ApplicationSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public enum IntegerDisplayFormat
4343

4444
// Default to something that will be before the current time.
4545
// This ensures the first run of the program tries to check for updates.
46-
public DateTime LastHashesUpdateCheckTime = DateTime.UnixEpoch;
46+
public DateTime LastHashesUpdateCheckTime { get; set; } = DateTime.UnixEpoch;
4747

4848
private ApplicationSettings()
4949
{

0 commit comments

Comments
 (0)