Debug cleanup

pull/206/head
M66B 4 years ago
parent f495eb51ab
commit 302c3c9f54

@ -686,10 +686,14 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
}, new Runnable() { }, new Runnable() {
@Override @Override
public void run() { public void run() {
if (BuildConfig.DEBUG) { if (BuildConfig.DEBUG)
ContactInfo.clearCache(ActivityView.this, true); try {
ToastEx.makeText(ActivityView.this, R.string.title_completed, Toast.LENGTH_LONG).show(); DnsBlockList.clearCache();
} ContactInfo.clearCache(ActivityView.this, true);
ToastEx.makeText(ActivityView.this, R.string.title_completed, Toast.LENGTH_LONG).show();
} catch (Throwable ex) {
Log.unexpectedError(getSupportFragmentManager(), ex);
}
} }
})); }));

Loading…
Cancel
Save