adium/adium

nextPageNecessary is no longer necessary.
adium-1.6
2013-04-25, Frank Dowsett
83d61933c544
Parents ff13562cc573
Children 7658a4afc14d
nextPageNecessary is no longer necessary.
--- a/Plugins/Twitter Plugin/AITwitterAccount.m Thu Apr 25 14:09:50 2013 -0400
+++ b/Plugins/Twitter Plugin/AITwitterAccount.m Thu Apr 25 14:10:00 2013 -0400
@@ -2150,8 +2150,6 @@
NSString *lastID = [self preferenceForKey:TWITTER_PREFERENCE_DM_LAST_ID
group:TWITTER_PREFERENCE_GROUP_UPDATES];
- BOOL nextPageNecessary = (lastID && messages.count >= TWITTER_UPDATE_DM_COUNT);
-
// Store the largest tweet ID we find; this will be our "last ID" the next time we run.
NSString *largestTweet = nil;
@@ -2160,7 +2158,7 @@
[queuedDM addObjectsFromArray:messages];
- AILogWithSignature(@"%@ Last ID: %@ Largest Tweet: %@ Next Page Necessary: %d", self, lastID, largestTweet, nextPageNecessary);
+ AILogWithSignature(@"%@ Last ID: %@ Largest Tweet: %@", self, lastID, largestTweet);
--pendingUpdateCount;