fix crash when opening a thread in the browser (#1053)
* fix crash when opening a Thread in the browser * avoid redundant actionableStatus.getActionableId()
This commit is contained in:
parent
2ec17bbb1b
commit
fd3226d244
1 changed files with 2 additions and 1 deletions
|
@ -98,7 +98,8 @@ public abstract class SFragment extends BaseFragment {
|
|||
}
|
||||
|
||||
protected void viewThread(Status status) {
|
||||
bottomSheetActivity.viewThread(status.getActionableId(), status.getUrl());
|
||||
Status actionableStatus = status.getActionableStatus();
|
||||
bottomSheetActivity.viewThread(actionableStatus.getId(), actionableStatus.getUrl());
|
||||
}
|
||||
|
||||
protected void viewAccount(String accountId) {
|
||||
|
|
Loading…
Reference in a new issue