Fix crash
This commit is contained in:
parent
e09508f651
commit
8c62acef07
1 changed files with 1 additions and 1 deletions
|
@ -1043,7 +1043,7 @@ public class OsMoGroupsActivity extends OsmandExpandableListActivity implements
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
String top = OsMoGroupsActivity.this.operation;
|
String top = OsMoGroupsActivity.this.operation;
|
||||||
if (top.equals(operation) || (operation != null && operation.equals(top))) {
|
if (operation != null && operation.equals(top)) {
|
||||||
hideProgressBar();
|
hideProgressBar();
|
||||||
}
|
}
|
||||||
if (joinGroup && (operation != null && operation.startsWith("GROUP_CONNECT"))) {
|
if (joinGroup && (operation != null && operation.startsWith("GROUP_CONNECT"))) {
|
||||||
|
|
Loading…
Reference in a new issue