discord-jadx/app/src/main/java/com/discord/stores/StoreNotifications$configur...

34 lines
1.6 KiB
Java

package com.discord.stores;
import com.discord.utilities.fcm.NotificationClient;
import d0.z.d.m;
import d0.z.d.o;
import kotlin.Pair;
import kotlin.Unit;
import kotlin.jvm.functions.Function1;
/* compiled from: StoreNotifications.kt */
public final class StoreNotifications$configureNotificationClient$3 extends o implements Function1<Pair<? extends NotificationClient.SettingsV2, ? extends Boolean>, Unit> {
public static final StoreNotifications$configureNotificationClient$3 INSTANCE = new StoreNotifications$configureNotificationClient$3();
public StoreNotifications$configureNotificationClient$3() {
super(1);
}
/* Return type fixed from 'java.lang.Object' to match base method */
/* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */
@Override // kotlin.jvm.functions.Function1
public /* bridge */ /* synthetic */ Unit invoke(Pair<? extends NotificationClient.SettingsV2, ? extends Boolean> pair) {
invoke((Pair<NotificationClient.SettingsV2, Boolean>) pair);
return Unit.a;
}
public final void invoke(Pair<NotificationClient.SettingsV2, Boolean> pair) {
NotificationClient.SettingsV2 component1 = pair.component1();
Boolean component2 = pair.component2();
NotificationClient notificationClient = NotificationClient.INSTANCE;
m.checkNotNullExpressionValue(component1, "settings");
m.checkNotNullExpressionValue(component2, "isBackgrounded");
notificationClient.updateSettings$app_productionBetaRelease(component1, component2.booleanValue());
}
}