Skip to content

Commit

Permalink
Merge pull request Twitter4J#85 from haushinka2dx/TFJ-752
Browse files Browse the repository at this point in the history
TFJ-752 set include_my_retweet when using showStatus()
  • Loading branch information
yusuke committed Feb 10, 2013
2 parents 8fbb2d4 + 2b94896 commit 7415661
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Jenny Loomis <jenny at rockmelt.com>
John Corwin <jcorwin at twitter.com> @johnxorz
John Sirois <jsirois at twitter.com> @johnsirois
Julien Letrouit <julien.letrouit at gmail.com> @jletroui
Keiichi Hirano <hirano.kei1 at gmail.com> @haushinka2dx
Komiya Atsushi <komiya.atsushi at gmail.com> @komiya_atsushi
Ludovico Fischer @ludovicofischer
marr-masaaki <marr fiveflavors at gmail.com> @marr
Expand Down
2 changes: 1 addition & 1 deletion twitter4j-core/src/main/java/twitter4j/TwitterImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public ResponseList<Status> getRetweets(long statusId) throws TwitterException {
*/
@Override
public Status showStatus(long id) throws TwitterException {
return factory.createStatus(get(conf.getRestBaseURL() + "statuses/show/" + id + ".json"));
return factory.createStatus(get(conf.getRestBaseURL() + "statuses/show/" + id + ".json", new HttpParameter[]{INCLUDE_MY_RETWEET}));
}

/**
Expand Down

0 comments on commit 7415661

Please sign in to comment.