Merge pull request #209 from GranPC/master

Fix user lookup. Fixes #199
This commit is contained in:
Mariotaku 2015-09-04 11:45:58 +08:00
commit eb85ce3e90
2 changed files with 3 additions and 3 deletions

View File

@ -99,10 +99,10 @@ public interface UsersResources {
@POST("/users/lookup.json")
@Body(BodyType.FORM)
ResponseList<User> lookupUsers(@Form("id") long[] ids) throws TwitterException;
ResponseList<User> lookupUsers(@Form("user_id") long[] ids) throws TwitterException;
@GET("/users/lookup.json")
ResponseList<User> lookupUsers(@Form("id") String[] screenNames) throws TwitterException;
ResponseList<User> lookupUsers(@Form("screen_name") String[] screenNames) throws TwitterException;
@POST("/account/remove_profile_banner.json")
@Body(BodyType.FORM)

View File

@ -503,7 +503,7 @@ public class LinkHandlerActivity extends BaseAppCompatActivity implements System
break;
}
case LINK_ID_STATUS_FAVORITERS: {
setTitle(R.string.users_retweeted_this);
setTitle(R.string.users_favorited_this);
break;
}
case LINK_ID_STATUS_REPLIES: {