discord-jadx/app/src/main/java/com/discord/widgets/guilds/WidgetGuildSelector$Compani...

45 lines
1.8 KiB
Java

package com.discord.widgets.guilds;
import android.os.Bundle;
import d0.z.d.m;
import d0.z.d.o;
import kotlin.Unit;
import kotlin.jvm.functions.Function2;
/* compiled from: WidgetGuildSelector.kt */
public final class WidgetGuildSelector$Companion$registerForResult$1 extends o implements Function2<String, Bundle, Unit> {
public final /* synthetic */ boolean $allowNullGuild;
public final /* synthetic */ Function2 $onGuildSelected;
public final /* synthetic */ String $requestKey;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public WidgetGuildSelector$Companion$registerForResult$1(String str, boolean z2, Function2 function2) {
super(2);
this.$requestKey = str;
this.$allowNullGuild = z2;
this.$onGuildSelected = function2;
}
/* 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, java.lang.Object] */
@Override // kotlin.jvm.functions.Function2
public /* bridge */ /* synthetic */ Unit invoke(String str, Bundle bundle) {
invoke(str, bundle);
return Unit.a;
}
public final void invoke(String str, Bundle bundle) {
m.checkNotNullParameter(str, "resultRequestKey");
m.checkNotNullParameter(bundle, "bundle");
if (m.areEqual(this.$requestKey, str)) {
String string = bundle.getString("INTENT_EXTRA_GUILD_NAME", "");
long j = bundle.getLong("INTENT_EXTRA_GUILD_ID", -1);
if (j > 0 || this.$allowNullGuild) {
Function2 function2 = this.$onGuildSelected;
Long valueOf = Long.valueOf(j);
m.checkNotNullExpressionValue(string, "guildName");
function2.invoke(valueOf, string);
}
}
}
}