Commit 1c357b07648999e0a90b4cf1d77226eaa88afe23
1 parent
dfa6ea76
0.3.2 版本 添加会话id判断
Showing
2 changed files
with
2 additions
and
2 deletions
CNLiveNewIMAManagerKit.podspec
| @@ -8,7 +8,7 @@ | @@ -8,7 +8,7 @@ | ||
| 8 | 8 | ||
| 9 | Pod::Spec.new do |s| | 9 | Pod::Spec.new do |s| |
| 10 | s.name = 'CNLiveNewIMAManagerKit' | 10 | s.name = 'CNLiveNewIMAManagerKit' |
| 11 | - s.version = '0.3.1' | 11 | + s.version = '0.3.2' |
| 12 | s.summary = 'A short description of CNLiveNewIMAManagerKit.' | 12 | s.summary = 'A short description of CNLiveNewIMAManagerKit.' |
| 13 | 13 | ||
| 14 | #s.description = <<-DESC | 14 | #s.description = <<-DESC |
CNLiveNewIMAManagerKit/Classes/Playform/IMAConversationManager.m
| @@ -1385,7 +1385,7 @@ | @@ -1385,7 +1385,7 @@ | ||
| 1385 | } | 1385 | } |
| 1386 | 1386 | ||
| 1387 | /**处理会话列表上没有此会话,但是用户进入了聊天界面*/ | 1387 | /**处理会话列表上没有此会话,但是用户进入了聊天界面*/ |
| 1388 | - if (!updateSucc && _chattingConversation && !isSystemMsg) { | 1388 | + if (!updateSucc && _chattingConversation && !isSystemMsg && [_chattingConversation.receiver isEqualToString:conv.getReceiver]) { |
| 1389 | [_chattingConversation onReceiveNewMessage:imamsg]; | 1389 | [_chattingConversation onReceiveNewMessage:imamsg]; |
| 1390 | } | 1390 | } |
| 1391 | 1391 |