Skip to content

Commit

Permalink
📦 2.1.2 Release
Browse files Browse the repository at this point in the history
- Another hotfix to the save value class that would return an error on a null value.
  • Loading branch information
JonathanMCarter committed Jan 20, 2024
1 parent f16bafe commit 4b3eac7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static class AssetVersionData
/// <summary>
/// The version number of the asset.
/// </summary>
public static string VersionNumber => "2.1.1";
public static string VersionNumber => "2.1.2";


/// <summary>
Expand All @@ -40,6 +40,6 @@ public static class AssetVersionData
/// <remarks>
/// Asset owner is in the UK, so its D/M/Y format.
/// </remarks>
public static string ReleaseDate => "19/01/2024";
public static string ReleaseDate => "20/01/2024";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ public override object ValueObject
get => value;
set
{
if (!this.value.Equals(value))
if (this.value == null)
{
this.value = (T) value;
}
else if (!this.value.Equals(value))
{
this.value = (T) value;
}
Expand Down

0 comments on commit 4b3eac7

Please sign in to comment.