discord-jadx/app/src/main/java/com/discord/stores/StorePendingReplies$onSetPe...

31 lines
1.4 KiB
Java

package com.discord.stores;
import com.discord.stores.StorePendingReplies;
import d0.z.d.o;
import kotlin.Unit;
import kotlin.jvm.functions.Function0;
/* compiled from: StorePendingReplies.kt */
public final class StorePendingReplies$onSetPendingReplyShouldMention$1 extends o implements Function0<Unit> {
public final /* synthetic */ long $channelId;
public final /* synthetic */ boolean $shouldMention;
public final /* synthetic */ StorePendingReplies this$0;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public StorePendingReplies$onSetPendingReplyShouldMention$1(StorePendingReplies storePendingReplies, long j, boolean z2) {
super(0);
this.this$0 = storePendingReplies;
this.$channelId = j;
this.$shouldMention = z2;
}
@Override // kotlin.jvm.functions.Function0
/* renamed from: invoke */
public final void mo1invoke() {
StorePendingReplies.PendingReply pendingReply = (StorePendingReplies.PendingReply) StorePendingReplies.access$getPendingReplies$p(this.this$0).get(Long.valueOf(this.$channelId));
if (pendingReply != null) {
StorePendingReplies.access$getPendingReplies$p(this.this$0).put(Long.valueOf(this.$channelId), StorePendingReplies.PendingReply.copy$default(pendingReply, null, null, this.$shouldMention, false, 11, null));
this.this$0.markChanged();
}
}
}