Skip to content

Commit c057f15

Browse files
authored
Default Base85Variant to Rfc1924 for backwards compatibility
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 9831f70 commit c057f15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet/Core/DataType/HashValue.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ public string AsBinaryString()
404404
/// <returns><inheritdoc/></returns>
405405
public string AsBase85String()
406406
{
407-
return AsBase85String(Base85Variant.Z85);
407+
return AsBase85String(Base85Variant.Rfc1924);
408408
}
409409

410410
/// <summary>
@@ -679,3 +679,4 @@ public int CompareTo(IHashValue other)
679679
}
680680
}
681681
}
682+

0 commit comments

Comments
 (0)