Re-enabled max items parsed, because disabling this causes shows to turn up as new multiple times. This again breaks feeds that add new shows at the bottom, so we need to solve this properly.
--- a/engine/src/FeedParser.cpp Sun Oct 31 14:14:17 2010 +0000
+++ b/engine/src/FeedParser.cpp Sun Oct 31 14:15:37 2010 +0000
@@ -309,11 +309,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;
}