Skip to content

Commit da6686b

Browse files
committed
update.
1 parent 1a757c2 commit da6686b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ios/Classes/EMChatroomManagerWrapper.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -946,9 +946,9 @@ - (void)chatroomSpecificationDidUpdate:(EMChatroom *)aChatroom {
946946
}];
947947
}
948948

949-
- (void)chatroomAttributesDidUpdated:(NSString *_Nonnull)roomId
949+
- (void)chatroomAttributesDidUpdated:(NSString *)roomId
950950
attributeMap:(NSDictionary<NSString *, NSString *> *)attributeMap
951-
from:(NSString *_Nonnull)fromId {
951+
from:(NSString *)fromId {
952952
__weak typeof(self) weakSelf = self;
953953
[EMListenerHandle.sharedInstance addHandle:^{
954954
NSDictionary *map = @{
@@ -960,9 +960,9 @@ - (void)chatroomAttributesDidUpdated:(NSString *_Nonnull)roomId
960960
[weakSelf.channel invokeMethod:ChatChatroomChanged arguments:map];
961961
}];
962962
}
963-
- (void)chatroomAttributesDidRemoved:(NSString *_Nonnull)roomId
964-
attributes:(NSArray<__kindof NSString *> *)attributes
965-
from:(NSString *_Nonnull)fromId {
963+
- (void)chatroomAttributesDidRemoved:(NSString *)roomId
964+
attributes:(NSArray<NSString *> *)attributes
965+
from:(NSString *)fromId {
966966
__weak typeof(self) weakSelf = self;
967967
[EMListenerHandle.sharedInstance addHandle:^{
968968
NSDictionary *map = @{

0 commit comments

Comments
 (0)