# HG changeset patch # User Sebastian Brannstrom # Date 1288534537 0 # Node ID 7a0fb290f9c6341ed22a16c4d6faedcdf50e1bc6 # Parent e3ec8e436951e8e9cb1664308c9d881c975b438b 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. diff -r e3ec8e436951 -r 7a0fb290f9c6 engine/src/FeedParser.cpp --- 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; }