Fix boolean StringElement serialization

This commit is contained in:
jvyden 2021-11-02 18:11:52 -04:00
parent f4460264c3
commit dd91de3c87
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -16,6 +16,8 @@ namespace LBPUnion.ProjectLighthouse.Serialization
public static string StringElement(KeyValuePair<string, object> pair) => $"<{pair.Key}>{pair.Value}</{pair.Key}>";
public static string StringElement(string key, bool value) => $"<{key}>{value.ToString().ToLower()}</{key}>";
public static string StringElement(string key, object value) => $"<{key}>{value}</{key}>";
public static string TaggedStringElement