Prevent crash

This commit is contained in:
M66B 2022-04-24 20:07:56 +02:00
parent d0a9e49221
commit 130fdfcbae
1 changed files with 3 additions and 0 deletions

View File

@ -835,6 +835,9 @@ public class Helper {
}
static void customTabsWarmup(Context context) {
if (context == null)
return;
try {
CustomTabsClient.bindCustomTabsService(context, "com.android.chrome", new CustomTabsServiceConnection() {
@Override