1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

AppendF null fix

This commit is contained in:
Brian Fiete 2025-02-18 09:15:44 -08:00
parent 575e6b439c
commit 04ebd9a738

View file

@ -1528,7 +1528,7 @@ namespace System
if ((provider == null) && (fmt.IsEmpty) && (width == 0))
{
if (arg == null)
s.Append("null");
Append("null");
else
arg.ToString(this);
}