fix a bug where a thread was not shown completely
This commit is contained in:
parent
f35ff105e9
commit
97546e79d9
1 changed files with 2 additions and 2 deletions
|
@ -296,8 +296,8 @@ public abstract class SFragment extends BaseFragment implements AdapterItemRemov
|
||||||
|
|
||||||
protected void viewThread(Status status) {
|
protected void viewThread(Status status) {
|
||||||
Intent intent = new Intent(getContext(), ViewThreadActivity.class);
|
Intent intent = new Intent(getContext(), ViewThreadActivity.class);
|
||||||
intent.putExtra("id", status.id);
|
intent.putExtra("id", status.getActionableId());
|
||||||
intent.putExtra("url", status.url);
|
intent.putExtra("url", status.getActionableStatus().url);
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue