[MOD] Don't always add two newlines

This commit is contained in:
lda 2025-02-17 17:44:09 +00:00
commit cdbdc9345a

View file

@ -149,7 +149,10 @@ XMPPifyElement(const ParseeConfig *conf, HashMap *event, XMLElement *elem, XMPPF
Concat(subxep);
Free(subxep);
}
Concat("\n");
if (i != 0)
{
Concat("\n");
}
}
else if (StrEquals(elem->name, "a"))
{