mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
AppendF null fix
This commit is contained in:
parent
575e6b439c
commit
04ebd9a738
1 changed files with 1 additions and 1 deletions
|
@ -1528,7 +1528,7 @@ namespace System
|
||||||
if ((provider == null) && (fmt.IsEmpty) && (width == 0))
|
if ((provider == null) && (fmt.IsEmpty) && (width == 0))
|
||||||
{
|
{
|
||||||
if (arg == null)
|
if (arg == null)
|
||||||
s.Append("null");
|
Append("null");
|
||||||
else
|
else
|
||||||
arg.ToString(this);
|
arg.ToString(this);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue