mirror of
https://github.com/accelforce/Yuito
synced 2024-12-31 18:17:27 +01:00
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
@ -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