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
c79daef974
commit
d419f82365
@ -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 New Issue
Block a user