We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c11d2f commit 66adfe8Copy full SHA for 66adfe8
apple/InlineIOS/Chat/ComposeView.swift
@@ -605,16 +605,16 @@ extension ComposeView: UITextViewDelegate {
605
let isEmpty = textView.text.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty
606
textViewContainer.textView.showPlaceholder(isEmpty)
607
608
- // Typing Indicators
+ // Typing Indicators - only for DMs
609
if isEmpty {
610
buttonDisappear()
611
- if let peerId {
+ if let peerId, case .user = peerId {
612
Task {
613
await ComposeActions.shared.stoppedTyping(for: peerId)
614
}
615
616
} else {
617
618
619
await ComposeActions.shared.startedTyping(for: peerId)
620
0 commit comments