adium-1.4 2604:a6965163aade: Patch from wixardy, fixes #12045 (I...

commits at adium.im commits at adium.im
Mon Aug 31 20:02:45 UTC 2009


details:	http://hg.adium.im/adium-1.4/rev/a6965163aade
revision:	2604:a6965163aade
author:		Stephen Holt <sholt at adium.im>
date:		Mon Aug 31 16:08:03 2009 -0400

Patch from wixardy, fixes #12045 (IRC Chat Logs Only Using 2 Lines)

diffs (12 lines):

diff -r 642e389c4035 -r a6965163aade Source/AIXMLAppender.m
--- a/Source/AIXMLAppender.m	Mon Aug 31 07:30:27 2009 -0500
+++ b/Source/AIXMLAppender.m	Mon Aug 31 16:08:03 2009 -0400
@@ -293,7 +293,7 @@
 - (void)appendElement:(AIXMLElement *)element
 {
 	//Create our strings
-	NSString *elementString = [element XMLString];
+	NSString *elementString = [NSString stringWithFormat:@"\n%@", [element XMLString]];
 	NSString *closingTag = [NSString stringWithFormat:@"</%@>", self.rootElement.name];
 	
 	if (elementString != nil) {




More information about the commits mailing list