From 3d9c78402d89d6f6e7f105e2855ea2263fc05cc8 Mon Sep 17 00:00:00 2001 From: M66B Date: Wed, 9 Jan 2019 18:45:40 +0000 Subject: [PATCH] View task names --- .../java/eu/faircode/email/ActivityView.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/src/main/java/eu/faircode/email/ActivityView.java b/app/src/main/java/eu/faircode/email/ActivityView.java index 735d3d03bf..b1599d966c 100644 --- a/app/src/main/java/eu/faircode/email/ActivityView.java +++ b/app/src/main/java/eu/faircode/email/ActivityView.java @@ -428,7 +428,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB protected void onException(Bundle args, Throwable ex) { Helper.unexpectedError(ActivityView.this, ActivityView.this, ex); } - }.execute(ActivityView.this, args); + }.execute(ActivityView.this, args, "search:account:archive"); } else { FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction(); fragmentTransaction.replace(R.id.content_frame, new FragmentPro()).addToBackStack("pro"); @@ -598,7 +598,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB else Toast.makeText(ActivityView.this, ex.toString(), Toast.LENGTH_LONG).show(); } - }.execute(this, new Bundle()); + }.execute(this, new Bundle(), "crash:log"); } private class UpdateInfo { @@ -691,7 +691,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB if (BuildConfig.DEBUG) Helper.unexpectedError(ActivityView.this, ActivityView.this, ex); } - }.execute(this, new Bundle()); + }.execute(this, new Bundle(), "update:check"); } private void updateShortcuts() { @@ -847,7 +847,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB protected void onException(Bundle args, Throwable ex) { Helper.unexpectedError(ActivityView.this, ActivityView.this, ex); } - }.execute(this, args); + }.execute(this, args, "menu:inbox"); } private void onMenuSetup() { @@ -949,7 +949,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB Toast.makeText(ActivityView.this, ex.toString(), Toast.LENGTH_LONG).show(); } - }.execute(this, new Bundle()); + }.execute(this, new Bundle(), "debug:info"); } private void onCleanup() { @@ -964,7 +964,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB protected void onException(Bundle args, Throwable ex) { Helper.unexpectedError(ActivityView.this, ActivityView.this, ex); } - }.execute(this, new Bundle()); + }.execute(this, new Bundle(), "cleanup:job"); } private void onShowLog() { @@ -1346,7 +1346,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB else Helper.unexpectedError(ActivityView.this, ActivityView.this, ex); } - }.execute(ActivityView.this, args); + }.execute(ActivityView.this, args, "decrypt"); } @Override @@ -1431,7 +1431,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB else Helper.unexpectedError(ActivityView.this, ActivityView.this, ex); } - }.execute(this, args); + }.execute(this, args, "attachment:save"); } private void saveAttachments(Intent data) { @@ -1501,6 +1501,6 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB protected void onException(Bundle args, Throwable ex) { Helper.unexpectedError(ActivityView.this, ActivityView.this, ex); } - }.execute(this, args); + }.execute(this, args, "attachments:save"); } }