small bug fix

This commit is contained in:
NudeDude 2019-04-01 00:14:43 +02:00
parent ca94bb60c5
commit d294f1d4c5
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public class TwitterEngine {
* @throws TwitterException if access is unavailable
*/
public List<Tweet> getMention(int page, long id) throws TwitterException {
List<Status> mentions = twitter.getMentionsTimeline(new Paging(page,/*load*/5, id));
List<Status> mentions = twitter.getMentionsTimeline(new Paging(page, load, id));
return convertStatusList(mentions);
}