Skip to content

Commit

Permalink
Now copied the right value
Browse files Browse the repository at this point in the history
  • Loading branch information
cramforce committed Oct 31, 2010
1 parent 2044c61 commit 7e2ea5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/lib/stream/streamplugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ require.def("stream/streamplugins",
func: function stringIDs (tweet) {
var data = tweet.data;
data.id = data.id_str;
data.in_reply_to_user_id = data.in_reply_to_user_id_str;
data.in_reply_to_status_id = data.in_reply_to_status_id_str;
if(data.retweeted_status) {
data = data.retweeted_status
data.id = data.id_str;
data.in_reply_to_user_id = data.in_reply_to_user_id_str;
data.in_reply_to_status_id = data.in_reply_to_status_id_str;
}
this();
}
Expand Down

0 comments on commit 7e2ea5b

Please sign in to comment.