send chat states only to private and non-anon mucs
This commit is contained in:
parent
1fd3bbfe25
commit
0ee13bbecb
|
@ -193,7 +193,7 @@ public class Conversation extends AbstractEntity implements Blockable, Comparabl
|
|||
}
|
||||
|
||||
public boolean setOutgoingChatState(ChatState state) {
|
||||
if (mode == MODE_MULTI && getNextCounterpart() != null) {
|
||||
if (mode == MODE_MULTI && (getNextCounterpart() != null || !isPnNA())) {
|
||||
return false;
|
||||
}
|
||||
if (this.mOutgoingChatState != state) {
|
||||
|
|
Loading…
Reference in New Issue