mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Improved logging
This commit is contained in:
@@ -520,9 +520,10 @@ public class Helper {
|
||||
}
|
||||
|
||||
static void view(Context context, Uri uri, boolean browse, boolean task) {
|
||||
Log.i("View=" + uri);
|
||||
boolean has = hasCustomTabs(context, uri);
|
||||
Log.i("View=" + uri + " browse=" + browse + " task=" + task + " has=" + has);
|
||||
|
||||
if (browse || !hasCustomTabs(context, uri)) {
|
||||
if (browse || !has) {
|
||||
try {
|
||||
Intent view = new Intent(Intent.ACTION_VIEW, uri);
|
||||
if (task)
|
||||
|
||||
Reference in New Issue
Block a user