adium 2655:d51ad07a1817: Patch from wixardy, fixes IRC Chat Logs...

commits at adium.im commits at adium.im
Mon Aug 31 20:03:23 UTC 2009


details:	http://hg.adium.im/adium/rev/d51ad07a1817
revision:	2655:d51ad07a1817
author:		Stephen Holt <sholt at adium.im>
date:		Mon Aug 31 16:10:29 2009 -0400

Patch from wixardy, fixes IRC Chat Logs Only Using 2 Lines

diffs (12 lines):

diff -r cc45ca3dc6b4 -r d51ad07a1817 Source/AIXMLAppender.m
--- a/Source/AIXMLAppender.m	Mon Aug 31 12:00:20 2009 -0400
+++ b/Source/AIXMLAppender.m	Mon Aug 31 16:10:29 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