Commit 924d6adbd9ce69ef1f91961ffd9640df72a6f071
1 parent
a54b989b
0.1.7 判断用户是否在通讯录
Showing
3 changed files
with
3 additions
and
3 deletions
CNLiveNewIMAManagerKit.podspec
| ... | ... | @@ -8,7 +8,7 @@ |
| 8 | 8 | |
| 9 | 9 | Pod::Spec.new do |s| |
| 10 | 10 | s.name = 'CNLiveNewIMAManagerKit' |
| 11 | - s.version = '0.1.6' | |
| 11 | + s.version = '0.1.7' | |
| 12 | 12 | s.summary = 'A short description of CNLiveNewIMAManagerKit.' |
| 13 | 13 | |
| 14 | 14 | # This description is used to generate tags and improve search results. | ... | ... |
CNLiveNewIMAManagerKit/Classes/Playform/IMAContactManager.h
CNLiveNewIMAManagerKit/Classes/Playform/IMAContactManager.m
| ... | ... | @@ -248,7 +248,7 @@ |
| 248 | 248 | return YES; |
| 249 | 249 | } |
| 250 | 250 | NSInteger index = [self.friendsList indexOfObject:user]; |
| 251 | - if (index >= 0 && index < self.friendsList.count && user.blackType == CNFriendsCheckResultTypeFriends) | |
| 251 | + if (index >= 0 && index < self.friendsList.count) | |
| 252 | 252 | { |
| 253 | 253 | return YES; |
| 254 | 254 | } | ... | ... |