mirror of
https://github.com/tuskyapp/Tusky
synced 2024-12-26 08:44:57 +01:00
fix a bug where a thread was not shown completely
This commit is contained in:
parent
f35ff105e9
commit
97546e79d9
@ -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 New Issue
Block a user