Fixes a bug where threads don't display correctly when clicking on boosts. Closes #91
This commit is contained in:
parent
2b7e6997f0
commit
7067b4e695
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ public class SFragment extends BaseFragment {
|
||||||
|
|
||||||
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());
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue