[app] Fix log reader crash (#77)
https://github.com/LSPosed/LSPosed/issues/58#issuecomment-774026586
This commit is contained in:
parent
16c03275ef
commit
3f87a49fc7
|
|
@ -238,8 +238,10 @@ public class LogsActivity extends BaseActivity {
|
||||||
private final Runnable mRunnable = new Runnable() {
|
private final Runnable mRunnable = new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
if (!isFinishing()) {
|
||||||
mProgressDialog.show();
|
mProgressDialog.show();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue