discord-jadx/app/src/main/java/com/discord/stores/StoreChat$toggleBlockedMess...

29 lines
1.1 KiB
Java

package com.discord.stores;
import d0.z.d.o;
import kotlin.Unit;
import kotlin.jvm.functions.Function0;
/* compiled from: StoreChat.kt */
public final class StoreChat$toggleBlockedMessageGroup$1 extends o implements Function0<Unit> {
public final /* synthetic */ long $messageId;
public final /* synthetic */ StoreChat this$0;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public StoreChat$toggleBlockedMessageGroup$1(StoreChat storeChat, long j) {
super(0);
this.this$0 = storeChat;
this.$messageId = j;
}
@Override // kotlin.jvm.functions.Function0
/* renamed from: invoke */
public final void mo1invoke() {
if (StoreChat.access$getExpandedBlockedMessageGroups$p(this.this$0).contains(Long.valueOf(this.$messageId))) {
StoreChat.access$getExpandedBlockedMessageGroups$p(this.this$0).remove(Long.valueOf(this.$messageId));
} else {
StoreChat.access$getExpandedBlockedMessageGroups$p(this.this$0).add(Long.valueOf(this.$messageId));
}
this.this$0.markChanged();
}
}