Revert "Always exclude from recents"

This reverts commit f7b1f3348a.
This commit is contained in:
M66B
2019-09-09 14:58:31 +02:00
parent f7b1f3348a
commit 93e20b7228
14 changed files with 64 additions and 62 deletions

View File

@@ -619,7 +619,7 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
@RequiresApi(api = Build.VERSION_CODES.O)
private void onActionCreateChannel() {
if (!ActivityBilling.isPro(context)) {
Helper.startActivity(context, new Intent(context, ActivityBilling.class));
context.startActivity(new Intent(context, ActivityBilling.class));
return;
}
@@ -632,7 +632,7 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
Intent intent = new Intent(Settings.ACTION_CHANNEL_NOTIFICATION_SETTINGS)
.putExtra(Settings.EXTRA_APP_PACKAGE, context.getPackageName())
.putExtra(Settings.EXTRA_CHANNEL_ID, EntityFolder.getNotificationChannelId(folder.id));
Helper.startActivity(context, intent);
context.startActivity(intent);
}
@RequiresApi(api = Build.VERSION_CODES.O)