mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Check if debug info available
This commit is contained in:
@@ -909,10 +909,13 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
|
||||
}, new Callable<Boolean>() {
|
||||
@Override
|
||||
public Boolean call() {
|
||||
if (!drawerLayout.isLocked(drawerContainer))
|
||||
drawerLayout.closeDrawer(drawerContainer);
|
||||
onDebugInfo();
|
||||
return true;
|
||||
if (DebugHelper.isAvailable()) {
|
||||
if (!drawerLayout.isLocked(drawerContainer))
|
||||
drawerLayout.closeDrawer(drawerContainer);
|
||||
onDebugInfo();
|
||||
return true;
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
}).setExternal(true));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user