# HG changeset patch # User Sebastian Brannstrom # Date 1287488721 -3600 # Node ID a13c58ace598c723cfecdf8f7b8339cd81e4fd26 # Parent 042bb9038b326c74f98c897b7bea8b918e147d84 Merged fix for bug 3797 diff -r 042bb9038b32 -r a13c58ace598 engine/src/FeedEngine.cpp --- a/engine/src/FeedEngine.cpp Sat Oct 16 15:58:45 2010 +0100 +++ b/engine/src/FeedEngine.cpp Tue Oct 19 12:45:21 2010 +0100 @@ -299,6 +299,7 @@ void CFeedEngine::NewShowL(CShowInfo& aItem) { + DP1("NewShowL, aItem.Title()=%S", &aItem.Title()); HBufC* description = HBufC::NewLC(KMaxDescriptionLength); TPtr ptr(description->Des()); ptr.Copy(aItem.Description()); diff -r 042bb9038b32 -r a13c58ace598 engine/src/FeedParser.cpp --- a/engine/src/FeedParser.cpp Sat Oct 16 15:58:45 2010 +0100 +++ b/engine/src/FeedParser.cpp Tue Oct 19 12:45:21 2010 +0100 @@ -302,11 +302,11 @@ iItemsParsed++; DP2("iItemsParsed: %d, iMaxItems: %d", iItemsParsed, iMaxItems); - if (iItemsParsed >= iMaxItems) - { - iStoppedParsing = ETrue; - DP("*** Too many items, aborting parsing"); - } +// if (iItemsParsed >= iMaxItems) +// { +// iStoppedParsing = ETrue; +// DP("*** Too many items, aborting parsing"); +// } iFeedState=EStateChannel; }